Files
tidb/dumpling/tests/naughty_strings/data/naughty_strings.escape.sql

13 lines
303 B
SQL

/*!40014 SET FOREIGN_KEY_CHECKS=0*/;
/*!40101 SET NAMES binary*/;
INSERT INTO `escape` VALUES
('''', '"'),
('"', ''''''),
('''''', '""'),
('""', '''"'''),
('''"''', '"''''''"''"'),
('"''''''''"''"', '"''"''''''''''"'),
('"''"''"''''''''"', ''),
('a",b,"a', 'a,"c",a'),
('bbaa|*|aabb', 'bba|*|a|*|abb');