chore: fix clippy error in ci (#803)

* chore: fix clippy error in ci

* chore: fix fmt
This commit is contained in:
Y Togami 2023-02-18 03:24:50 +09:00 committed by GitHub
parent 4955863bdf
commit b31ede7733
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 371 additions and 444 deletions

View file

@ -25,5 +25,5 @@ fn main() {
let ast = Parser::parse_sql(&dialect, sql).unwrap();
println!("AST: {:?}", ast);
println!("AST: {ast:?}");
}