We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c5146 commit c30ebf4Copy full SHA for c30ebf4
src/test_utils/sqllogictest.rs
@@ -43,7 +43,7 @@ impl DatafusionDistributedDB {
43
/// Ex. "Users/jay/code/datafusion-distributed/....../file-0000.parquet" -> "datafusion-distributed/....../file-0000.parquet"
44
fn sanitize_file_paths(plan_str: &str) -> String {
45
let re = Regex::new(r"(?m)(^|[\[,]\s*)(?:[^,\[\s]*/)*datafusion-distributed/").unwrap();
46
- re.replace_all(plan_str, "datafusion-distributed/")
+ re.replace_all(plan_str, "${1}datafusion-distributed/")
47
.to_string()
48
}
49
0 commit comments