pub async fn combine_parquet_files(
file_paths: Vec<&str>,
new_file_path: &str,
storage_options: Option<HashMap<String, String>>,
compression: Option<Compression>,
max_row_group_size: Option<usize>,
) -> Result<()>
Expand description
Combines multiple Parquet files using object store with storage options
§Errors
Returns an error if file reading or writing fails.