Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
wugeer committed Jan 9, 2025
1 parent 5b5d62e commit 9576438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sqlparser_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2368,7 +2368,7 @@ fn parse_select_grouping_sets() {
let dialects = all_dialects_where(|d| d.supports_select_grouping_sets());

let sql = "SELECT a, b, SUM(c) FROM tab1 GROUP BY a, b GROUPING SETS ((a, b), (a), (b), ())";
match dialects.verified_stmt(&sql) {
match dialects.verified_stmt(sql) {
Statement::Query(query) => {
let grouping_sets = &query.body.as_select().unwrap().grouping_sets;
assert_eq!(
Expand Down

0 comments on commit 9576438

Please sign in to comment.