Skip to content

Commit 9576438

Browse files
committed
fix lint error
1 parent 5b5d62e commit 9576438

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sqlparser_common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2368,7 +2368,7 @@ fn parse_select_grouping_sets() {
23682368
let dialects = all_dialects_where(|d| d.supports_select_grouping_sets());
23692369

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

0 commit comments

Comments
 (0)