diff --git a/tests/perf-system/submitter/submit.cpp b/tests/perf-system/submitter/submit.cpp index 900f6bcc895..793c3fe6aaf 100644 --- a/tests/perf-system/submitter/submit.cpp +++ b/tests/perf-system/submitter/submit.cpp @@ -202,7 +202,7 @@ void store_parquet_results(ArgumentParser args, ParquetData data_handler) PARQUET_ASSIGN_OR_THROW( outfile, arrow::io::FileOutputStream::Open(args.send_filepath)); PARQUET_THROW_NOT_OK(parquet::arrow::WriteTable( - *table, arrow::default_memory_pool(), outfile, 1)); + *table, arrow::default_memory_pool(), outfile)); } // Write Response Parquet @@ -236,7 +236,7 @@ void store_parquet_results(ArgumentParser args, ParquetData data_handler) PARQUET_ASSIGN_OR_THROW( outfile, arrow::io::FileOutputStream::Open(args.response_filepath)); PARQUET_THROW_NOT_OK(parquet::arrow::WriteTable( - *table, arrow::default_memory_pool(), outfile, 1)); + *table, arrow::default_memory_pool(), outfile)); } LOG_INFO_FMT("Finished storing results"); diff --git a/tests/requirements.txt b/tests/requirements.txt index 4c2f8087288..ac46b3b19d9 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -22,4 +22,4 @@ pycose # Piccolo dependencies fastparquet==2023.* prettytable==3.* -polars==0.18.7 \ No newline at end of file +polars \ No newline at end of file