Commit c021a92
committed
Removed TODO.
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.1 parent 8c09ab6 commit c021a92
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
| 18 | + | |
18 | 19 | | |
19 | 20 | | |
20 | 21 | | |
| |||
0 commit comments