-
Notifications
You must be signed in to change notification settings - Fork 314
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
Support to drop multiple tables #4020
Comments
Can I try it? |
I have a question: When an error occurs while dropping multiple tables, what action should I take?
|
I prefer the first one. |
There is another question: in more extreme cases, if multiple errors occur, how do I deal with these errors? |
How about referencing the behavior of the MySQL. |
If any tables do not exist without IF EXISTS, the statement fails with an error and don`t make any change. It`s obvious, and I`m implementing it. For other internal errors might occur, it has no discussion. |
What problem does the new feature solve?
Drop multiple tables in the single statement
What does the feature do?
To implement the
DROP [TEMPORARY] TABLE [IF EXISTS] tbl_name [, tbl_name]
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: