Include DML keyword in statement span (#2090)
Some checks failed
license / Release Audit Tool (RAT) (push) Has been cancelled
Rust / codestyle (push) Has been cancelled
Rust / lint (push) Has been cancelled
Rust / benchmark-lint (push) Has been cancelled
Rust / compile (push) Has been cancelled
Rust / docs (push) Has been cancelled
Rust / compile-no-std (push) Has been cancelled
Rust / test (beta) (push) Has been cancelled
Rust / test (nightly) (push) Has been cancelled
Rust / test (stable) (push) Has been cancelled

This commit is contained in:
xitep 2025-11-13 10:27:58 +01:00 committed by GitHub
parent 78be8b178b
commit 4f79997c8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 150 additions and 37 deletions

View file

@ -22,6 +22,7 @@
#[macro_use]
mod test_utils;
use sqlparser::ast::helpers::attached_token::AttachedToken;
use sqlparser::keywords::Keyword;
use test_utils::*;
@ -494,7 +495,8 @@ fn parse_update_tuple_row_values() {
},
from: None,
returning: None,
limit: None
limit: None,
update_token: AttachedToken::empty()
})
);
}