mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-09 21:42:05 +00:00
Fix limit
in subqueries (#1899)
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
1d0dc7cdd8
commit
7865de015f
3 changed files with 11 additions and 4 deletions
|
@ -748,7 +748,7 @@ pub enum Expr {
|
|||
/// `[ NOT ] IN (SELECT ...)`
|
||||
InSubquery {
|
||||
expr: Box<Expr>,
|
||||
subquery: Box<SetExpr>,
|
||||
subquery: Box<Query>,
|
||||
negated: bool,
|
||||
},
|
||||
/// `[ NOT ] IN UNNEST(array_expression)`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue