mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
Add support for ODBC functions (#1585)
This commit is contained in:
parent
04271b0e4e
commit
a13f8c6b93
15 changed files with 142 additions and 6 deletions
|
@ -635,6 +635,7 @@ fn parse_delimited_identifiers() {
|
|||
assert_eq!(
|
||||
&Expr::Function(Function {
|
||||
name: ObjectName(vec![Ident::with_quote('"', "myfun")]),
|
||||
uses_odbc_syntax: false,
|
||||
parameters: FunctionArguments::None,
|
||||
args: FunctionArguments::List(FunctionArgumentList {
|
||||
duplicate_treatment: None,
|
||||
|
@ -1388,6 +1389,7 @@ fn parse_create_table_with_valid_options() {
|
|||
},
|
||||
],
|
||||
),
|
||||
uses_odbc_syntax: false,
|
||||
parameters: FunctionArguments::None,
|
||||
args: FunctionArguments::List(
|
||||
FunctionArgumentList {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue