Files
tidb/dumpling/tests/naughty_strings/expect/naughty_strings.escape.sql
2021-10-26 11:06:48 +08:00

12 lines
282 B
SQL

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