Skip to content

Commit 1c1b621

Browse files
committed
fix cargo clippy error
1 parent 86fc85c commit 1c1b621

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
@@ -11743,7 +11743,7 @@ fn parse_create_table_select() {
1174311743
let dialects = all_dialects_where(|d| !d.supports_create_table_select());
1174411744
for sql in [sql_1, sql_2] {
1174511745
assert_eq!(
11746-
dialects.parse_sql_statements(&sql).unwrap_err(),
11746+
dialects.parse_sql_statements(sql).unwrap_err(),
1174711747
ParserError::ParserError("Expected: end of statement, found: SELECT".to_string())
1174811748
);
1174911749
}

0 commit comments

Comments
 (0)