Skip to content

Commit

Permalink
fix: fix parallel testing db name duplication, for the lib
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Chien <[email protected]>
  • Loading branch information
stdrc committed Nov 1, 2023
1 parent 17d18b8 commit 32bc799
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions sqllogictest/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1023,11 +1023,9 @@ impl<D: AsyncDB, M: MakeConnection<Conn = D>> Runner<D, M> {
// for every slt file, we create a database against table conflict
let file = file.unwrap();
let db_name = file
.file_name()
.expect("not a valid filename")
.to_str()
.expect("not a UTF-8 filename");
let db_name = db_name.replace([' ', '.', '-'], "_");
.ok_or_else(|| anyhow!("not a UTF-8 filename"))?;
let db_name = db_name.replace([' ', '.', '-', '/'], "_");

self.conn
.run_default(&format!("CREATE DATABASE {db_name};"))
Expand Down

0 comments on commit 32bc799

Please sign in to comment.