mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-12-23 11:12:51 +00:00
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
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:
parent
78be8b178b
commit
4f79997c8e
8 changed files with 150 additions and 37 deletions
|
|
@ -5140,6 +5140,7 @@ fn test_simple_postgres_insert_with_alias() {
|
|||
assert_eq!(
|
||||
statement,
|
||||
Statement::Insert(Insert {
|
||||
insert_token: AttachedToken::empty(),
|
||||
or: None,
|
||||
ignore: false,
|
||||
into: true,
|
||||
|
|
@ -5210,6 +5211,7 @@ fn test_simple_postgres_insert_with_alias() {
|
|||
assert_eq!(
|
||||
statement,
|
||||
Statement::Insert(Insert {
|
||||
insert_token: AttachedToken::empty(),
|
||||
or: None,
|
||||
ignore: false,
|
||||
into: true,
|
||||
|
|
@ -5282,6 +5284,7 @@ fn test_simple_insert_with_quoted_alias() {
|
|||
assert_eq!(
|
||||
statement,
|
||||
Statement::Insert(Insert {
|
||||
insert_token: AttachedToken::empty(),
|
||||
or: None,
|
||||
ignore: false,
|
||||
into: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue