Skip to content

Commit f631fc6

Browse files
committed
fmt
1 parent d121ffd commit f631fc6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

crates/duckdb/src/test_all_types.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ fn test_large_arrow_types() -> crate::Result<()> {
2222
fn test_with_database(database: &Connection) -> crate::Result<()> {
2323
// uhugeint, time_tz, and dec38_10 aren't supported in the duckdb arrow layer
2424
// union is currently blocked by https://github.com/duckdb/duckdb/pull/11326
25-
let excluded = ["uhugeint", "time_tz", "dec38_10", "union", "varint", "dec_4_1", "dec_9_4", "dec_18_6"];
25+
let excluded = [
26+
"uhugeint", "time_tz", "dec38_10", "union", "varint", "dec_4_1", "dec_9_4", "dec_18_6",
27+
];
2628

2729
let mut binding = database.prepare(&format!(
2830
"SELECT * EXCLUDE ({}) FROM test_all_types()",

crates/duckdb/src/vtab/arrow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1616,7 +1616,7 @@ mod test {
16161616
fn test_decimal128_roundtrip() -> Result<(), Box<dyn Error>> {
16171617
// With default width and scale
16181618
let array: PrimitiveArray<arrow::datatypes::Decimal128Type> =
1619-
Decimal128Array::from(vec![i128::from(1), i128::from(2), i128::from(3)]);
1619+
Decimal128Array::from(vec![i128::from(1), i128::from(2), i128::from(3)]);
16201620
check_rust_primitive_array_roundtrip(array.clone(), array)?;
16211621

16221622
// With custom width and scale

0 commit comments

Comments
 (0)