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
Currently it seems that this package doesn't support using MySQL's DELIMITER keyword which is commonly used with stored procedures which contain multiple statements.
I've created a very basic example below to highlight the issue in its simplest form:
Example Input
SELECT1;
DELIMITER $
SELECT2$
SELECT3$
Expected Output (Suggestion)
Not sure if this is the best solution, but just what I would have expected to see initially.
Currently it seems that this package doesn't support using MySQL's
DELIMITER
keyword which is commonly used with stored procedures which contain multiple statements.I've created a very basic example below to highlight the issue in its simplest form:
Example Input
Expected Output (Suggestion)
Not sure if this is the best solution, but just what I would have expected to see initially.
Actual Output (with strict mode disabled)
Demo
Incase it's useful, I've also created a functioning demo here
The text was updated successfully, but these errors were encountered: