We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49152d3 commit 5a60e1bCopy full SHA for 5a60e1b
enginetest/queries/alter_table_queries.go
@@ -1051,13 +1051,13 @@ var AlterTableScripts = []ScriptTest{
1051
Name: "alter table supports non-escaped \\Z",
1052
SetUpScript: []string{
1053
"create table t (i int);",
1054
- `alter table t modify column i int comment "ctrlz \\Z \\Z"`,
+ `alter table t modify column i int comment "ctrlz \Z \\Z"`,
1055
},
1056
Assertions: []ScriptTestAssertion{
1057
{
1058
Query: "show create table t",
1059
Expected: []sql.Row{{"t", "CREATE TABLE `t` (\n" +
1060
- " `i` int COMMENT 'ctrlz \\Z \\Z'\n" +
+ " `i` int COMMENT 'ctrlz \x1A \\\\Z'\n" +
1061
") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin"}},
1062
1063
0 commit comments