Skip to content

Commit

Permalink
Ignore errors during CSV to Parquet conversion
Browse files Browse the repository at this point in the history
The error management during the CSV to Parquet conversion in 'lib.rs' has been updated. Instead of printing out errors encountered during the process, they are now ignored. This change provides cleaner output by focusing only on successful conversion tasks.
  • Loading branch information
rayyildiz committed Apr 1, 2024
1 parent 1855d7a commit 0aa2408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -77,7 +77,7 @@ pub fn convert_to_parquet(
for batch in csv.by_ref() {
match batch {
Ok(batch) => parquet_writer.write(&batch)?,
Err(error) => eprintln!("error : {:?}", error)
Err(error) => {}
}
}

Expand Down

0 comments on commit 0aa2408

Please sign in to comment.