Skip to content

Commit c38f69b

Browse files
committed
fmt
1 parent 2a7f307 commit c38f69b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tpchgen-cli/src/parquet.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,12 @@ where
141141
{
142142
// Create writers for each of the leaf columns
143143
#[allow(deprecated)]
144-
let mut col_writers = parquet::arrow::arrow_writer::get_column_writers(&parquet_schema, &writer_properties, &schema).unwrap();
144+
let mut col_writers = parquet::arrow::arrow_writer::get_column_writers(
145+
&parquet_schema,
146+
&writer_properties,
147+
&schema,
148+
)
149+
.unwrap();
145150

146151
// generate the data and send it to the tasks (via the sender channels)
147152
for batch in iter {

0 commit comments

Comments
 (0)