Skip to content

Commit

Permalink
fix clippy (#2124)
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Jul 21, 2022
1 parent f62f26a commit 5e3facf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-testing/src/lib.rs
Expand Up @@ -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()))
}
Expand Down

0 comments on commit 5e3facf

Please sign in to comment.