Skip to content

Commit e957173

Browse files
author
Devdutt Shenoi
committed
fix: consider custom partitions
1 parent 487655e commit e957173

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parseable/streams.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ use super::{
6767
};
6868

6969
static ARROWS_NAME_STRUCTURE: Lazy<Regex> = Lazy::new(|| {
70-
Regex::new(r"^[[:alnum:]]+\.(?P<front>\S+)\.\d+\.data\.arrows$").expect("Validated regex")
70+
Regex::new(r"^[a-zA-Z0-9&=]+\.(?P<front>\S+)\.\d+\.data\.arrows$").expect("Validated regex")
7171
});
7272

7373
fn arrow_path_to_parquet(path: &Path, random_string: &str) -> Option<PathBuf> {

0 commit comments

Comments
 (0)