Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
xudong963 committed Feb 3, 2023
1 parent 725c9b4 commit b8bf3a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ header:
- "website"
- "tests"
- "tools"
- "benchmark"
# Ignore hidden files
- ".cargo"
- ".databend"
Expand Down
4 changes: 2 additions & 2 deletions tests/sqllogictests/src/client/mysql_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ impl MySQLClient {
let rows: Vec<Row> = self.conn.query(sql).await?;
let elapsed = start.elapsed();
if self.tpch {
println!("{:?}", elapsed);
println!("{elapsed:?}");
}
if self.debug {
println!("Running sql with mysql client: [{sql}] ({:?})", elapsed);
println!("Running sql with mysql client: [{sql}] ({elapsed:?})");
};
let types = vec![ColumnType::Any; rows.len()];
let mut parsed_rows = Vec::with_capacity(rows.len());
Expand Down

0 comments on commit b8bf3a4

Please sign in to comment.