Skip to content

Commit cf5b925

Browse files
committed
Fix test
1 parent e04720e commit cf5b925

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/sqlparser_mysql.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2814,7 +2814,9 @@ fn parse_update_with_order_by() {
28142814
fn parse_update_with_order_by_and_limit() {
28152815
let sql = "UPDATE foo SET bar = false WHERE foo = true ORDER BY foo ASC LIMIT 10";
28162816
match mysql_and_generic().verified_stmt(sql) {
2817-
Statement::Update(Update { order_by, limit, .. }) => {
2817+
Statement::Update(Update {
2818+
order_by, limit, ..
2819+
}) => {
28182820
assert_eq!(
28192821
vec![OrderByExpr {
28202822
expr: Expr::Identifier(Ident {

0 commit comments

Comments
 (0)