We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a7f307 commit c38f69bCopy full SHA for c38f69b
tpchgen-cli/src/parquet.rs
@@ -141,7 +141,12 @@ where
141
{
142
// Create writers for each of the leaf columns
143
#[allow(deprecated)]
144
- let mut col_writers = parquet::arrow::arrow_writer::get_column_writers(&parquet_schema, &writer_properties, &schema).unwrap();
+ let mut col_writers = parquet::arrow::arrow_writer::get_column_writers(
145
+ &parquet_schema,
146
+ &writer_properties,
147
+ &schema,
148
+ )
149
+ .unwrap();
150
151
// generate the data and send it to the tasks (via the sender channels)
152
for batch in iter {
0 commit comments