We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e04720e commit cf5b925Copy full SHA for cf5b925
tests/sqlparser_mysql.rs
@@ -2814,7 +2814,9 @@ fn parse_update_with_order_by() {
2814
fn parse_update_with_order_by_and_limit() {
2815
let sql = "UPDATE foo SET bar = false WHERE foo = true ORDER BY foo ASC LIMIT 10";
2816
match mysql_and_generic().verified_stmt(sql) {
2817
- Statement::Update(Update { order_by, limit, .. }) => {
+ Statement::Update(Update {
2818
+ order_by, limit, ..
2819
+ }) => {
2820
assert_eq!(
2821
vec![OrderByExpr {
2822
expr: Expr::Identifier(Ident {
0 commit comments