-
Notifications
You must be signed in to change notification settings - Fork 605
Support arbitrary WITH options for CREATE [TABLE|VIEW] #74
New issue
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
Conversation
Pull Request Test Coverage Report for Build 273
💛 - Coveralls |
I'd like to share a few thoughts on this, even though I don't have specific suggestions at this time:
Some links to documentation (apparently these options can appear in other contexts, this is just a sample): |
One thing I'd like to request is that you put a realistic SQL in the testcase (possibly moving it to a dialect-specific suite); the extensions can be implemented in a follow-up. My idea with |
9922cc5
to
e9cdc81
Compare
Both Postgres and MSSQL accept this syntax, though the particular options they accept differ.
Ok, added a more realistic test case to the Postgres dialect. Thanks for the review! |
Thanks! Given that you kept |
We do, yeah—but I think we'd be happy to declare that we are most closely aligned with the Postgres dialect, and ask for that dialect when we parse. I.e., you should definitely feel free to delete the general test case, or move it to the Postgres-specific test case. |
Both Postgres and MSSQL accept this syntax, though the particular
options they accept differ.