We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 684b8b1 commit 5c4d580Copy full SHA for 5c4d580
src/parseable/streams.rs
@@ -71,7 +71,7 @@ use super::{
71
fn arrow_path_to_parquet(path: &Path, random_string: &str) -> Option<PathBuf> {
72
let filename = path.file_stem()?.to_str()?;
73
let (_, front) = filename.split_once('.')?;
74
- assert!(filename.contains('.'), "contains the delim `.`");
+ assert!(front.contains('.'), "contains the delim `.`");
75
let filename_with_random_number = format!("{front}.data.{random_string}.parquet");
76
let mut parquet_path = path.to_owned();
77
parquet_path.set_file_name(filename_with_random_number);
0 commit comments