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
Tested whether we needed to account for \ escapes in backtick
literals in mysql REPL:
> CREATE DATABASE scratch;
> USE SCRATCH;
> CREATE TABLE `a``b` (id INT);
> SELECT * FROM `a``b`;
Empty set (0.01 sec)
> SELECT * FROM `a\`b`;
ERROR 1064 (42000): You have an error in your SQL syntax; ...
and by examination of https://dev.mysql.com/doc/refman/5.7/en/string-literals.html
re other escaping conventions.
0 commit comments