Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
Signed-off-by: xxchan <[email protected]>
  • Loading branch information
xxchan committed Dec 12, 2024
1 parent 92b350d commit d14ce9b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["sqllogictest", "sqllogictest-bin", "sqllogictest-engines", "tests"]

[workspace.package]
version = "0.23.0"
version = "0.23.1"
edition = "2021"
homepage = "https://github.com/risinglightdb/sqllogictest-rs"
keywords = ["sql", "database", "parser", "cli"]
Expand Down
3 changes: 2 additions & 1 deletion sqllogictest-bin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ pub async fn main() -> Result<()> {
result
}

#[allow(clippy::too_many_arguments)]
async fn run_parallel(
jobs: usize,
keep_db_on_failure: bool,
Expand Down Expand Up @@ -308,7 +309,7 @@ async fn run_parallel(
let mut stream = futures::stream::iter(create_databases.into_iter())
.map(|(db_name, filename)| {
let mut config = config.clone();
config.db = db_name.clone();
config.db.clone_from(&db_name);
let file = filename.to_string_lossy().to_string();
let engine = engine.clone();
let labels = labels.to_vec();
Expand Down

0 comments on commit d14ce9b

Please sign in to comment.