You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to take on this issue.
If i remember correctly, DROP PROCEDURE ... is part of the SQL spec, so we can just implement it in the Parser crate, right?
https://github.com/sqlparser-rs/sqlparser-rs/blob/9d15f7e9a92a4ef36fcc6d3166fd0221a22a20e2/src/parser/mod.rs#L4217
drop procedure stmt is allowed in many sql client impl.
(https://dev.mysql.com/doc/refman/8.0/en/drop-procedure.html,
https://learn.microsoft.com/en-us/sql/t-sql/statements/drop-procedure-transact-sql?view=sql-server-ver16,
https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/DROP-PROCEDURE.html,
...)
The text was updated successfully, but these errors were encountered: