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

13 lines
319 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');