mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-15 12:34:59 +00:00
MSSQL: Add support for EXEC output and default keywords (#1940)
This commit is contained in:
parent
750a7aa054
commit
9b9ffe450c
4 changed files with 47 additions and 4 deletions
|
@ -1666,7 +1666,9 @@ fn parse_execute() {
|
|||
has_parentheses: false,
|
||||
using: vec![],
|
||||
immediate: false,
|
||||
into: vec![]
|
||||
into: vec![],
|
||||
output: false,
|
||||
default: false,
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -1682,7 +1684,9 @@ fn parse_execute() {
|
|||
has_parentheses: true,
|
||||
using: vec![],
|
||||
immediate: false,
|
||||
into: vec![]
|
||||
into: vec![],
|
||||
output: false,
|
||||
default: false,
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -1719,7 +1723,9 @@ fn parse_execute() {
|
|||
},
|
||||
],
|
||||
immediate: false,
|
||||
into: vec![]
|
||||
into: vec![],
|
||||
output: false,
|
||||
default: false,
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue