diff --git a/integration-testing/src/lib.rs b/integration-testing/src/lib.rs index 95342703593..781416e6752 100644 --- a/integration-testing/src/lib.rs +++ b/integration-testing/src/lib.rs @@ -640,10 +640,10 @@ fn array_from_json( let decimal = Decimal256::try_new_from_bytes(*precision, *scale, &bytes) .unwrap(); - b.append_value(&decimal) + b.append_value(&decimal)?; } - _ => Ok(b.append_null()), - }?; + _ => b.append_null(), + } } Ok(Arc::new(b.finish())) }