From db91031c2cd07f516f8118abf5477c33e0249e0a Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Thu, 21 Jul 2022 16:33:10 -0400 Subject: [PATCH] Fix logical merge conflict (#2121) --- integration-testing/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-testing/src/lib.rs b/integration-testing/src/lib.rs index cd3033bbb87..95342703593 100644 --- a/integration-testing/src/lib.rs +++ b/integration-testing/src/lib.rs @@ -642,7 +642,7 @@ fn array_from_json( .unwrap(); b.append_value(&decimal) } - _ => b.append_null(), + _ => Ok(b.append_null()), }?; } Ok(Arc::new(b.finish()))