In clap, multiple_values = true is replaced with num_args = 1..
Use #[arg(short, long)] instead of #[clap(short, long)]
The behavior of record_batch_to_json_row() has been changed and thus our integration test for pqrs cat --json needs to be changed too(CAT_JSON_OUTPUT needs to be updated)
What are included in this PR
parquet/arrow
to38.0.0
clap
to4.2.7
parquet
,ArrowReader
andParquetFileArrowReader
are deprecated and replaced withArrowReaderBuilder
andParquetRecordBatchReaderBuilder
clap
,multiple_values = true
is replaced withnum_args = 1..
#[arg(short, long)]
instead of#[clap(short, long)]
The behavior of
record_batch_to_json_row()
has been changed and thus our integration test forpqrs cat --json
needs to be changed too(CAT_JSON_OUTPUT
needs to be updated)cargo fmt