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
in displaySummary the $token = trim($token, '()'); line is heavy-handed in that it will truncate legitimate parens at the end of an SQL statement that is not terminated by a semicolon.
SELECT This FROM That WHERE ((A=B) AND (C=D))
Will produce
SELECT This FROM That WHERE ((A=B) AND (C=D
On the other side of the call which, if used in copy/paste, or run through something like sqlFormatter, will produce errors.
The text was updated successfully, but these errors were encountered:
in displaySummary the $token = trim($token, '()'); line is heavy-handed in that it will truncate legitimate parens at the end of an SQL statement that is not terminated by a semicolon.
SELECT This FROM That WHERE ((A=B) AND (C=D))
Will produce
SELECT This FROM That WHERE ((A=B) AND (C=D
On the other side of the call which, if used in copy/paste, or run through something like sqlFormatter, will produce errors.
The text was updated successfully, but these errors were encountered: