Missing Oracle-flavor multiple drop column case #1363
Labels
Comments
Thank you for reporting, its a Duplicate of #1245. |
manticore-projects
added a commit
to manticore-projects/JSqlParser
that referenced
this issue
Oct 18, 2021
Should be fixed, but please verify your example.
So you example would still fail, but the following will work: ALTER TABLE foo DROP (bar, baz) CASCADE; Do let me know any issues or concerns. |
wumpz
pushed a commit
that referenced
this issue
Oct 20, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the great parser. I noticed that it's missing support of the Oracle way to drop multiple columns in a single statement. Here's the Oracle syntax to drop multiple columns (source):
ALTER TABLE [schema].[table] DROP COLUMN ([col1], [col2]);
When parsing, it throws this error:
Java version 8, JSqlParser version 4.2
The text was updated successfully, but these errors were encountered: