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
When I create a WHERE statement like WHERE s.status_id != 8 /*Pending*/
parse it then try to create it from the parse
I get "unknown [expr_type] = comment in "WHERE" [x]"
The Parser seems to understand it: [{"expr_type":"comment","value":"\/*Pending*\/"}]
PHPSQLCreator just needs to add it back in
The text was updated successfully, but these errors were encountered:
What's even more interesting is PHPSQLParser mistook a comment like "# Set" as a colref {"expr_type":"colref","base_expr":"# Set","no_quotes":{"delim":false,"parts":["# Set"]},"sub_tree":false}
So PHPSQLCreator added it back in and because PHPSQLCreator generates the query in one line it commented out the rest of the query.
I have version v4.5.0
When I create a WHERE statement like
WHERE s.status_id != 8 /*Pending*/
parse it then try to create it from the parse
I get
"unknown [expr_type] = comment in "WHERE" [x]"
The Parser seems to understand it:
[{"expr_type":"comment","value":"\/*Pending*\/"}]
PHPSQLCreator just needs to add it back in
The text was updated successfully, but these errors were encountered: