We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current BigQueryDialect is capable of parsing struct data type such as
create table t (s struct<n int, s varchar>);
According to README, this feature should also support GenericDialect, however in current code, before parsing this syntax, we only allow BigQueryDialect to have this syntax
The text was updated successfully, but these errors were encountered:
Struct
Can we also support syntax with '()', like create table t (s struct(n int, s varchar)); like duckdb
create table t (s struct(n int, s varchar));
Sorry, something went wrong.
https://github.com/sqlparser-rs/sqlparser-rs/blob/2f437db2a68724e4ae709df22f53999d24804ac7/src/parser/mod.rs#L1903 Then i think we can add | LParen here
@duongcongtoai filed #1245 as a follow on. THank you
Successfully merging a pull request may close this issue.
Current BigQueryDialect is capable of parsing struct data type such as
According to README, this feature should also support GenericDialect, however in current code, before parsing this syntax, we only allow BigQueryDialect to have this syntax
The text was updated successfully, but these errors were encountered: