Skip to content

Commit bb8cef2

Browse files
committed
add mysql dialect tag
1 parent 7eff50e commit bb8cef2

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

enginetest/queries/script_queries.go

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9389,7 +9389,8 @@ where
93899389
},
93909390
},
93919391
{
9392-
Name: "Convert enum columns to string columns with alter table",
9392+
Name: "Convert enum columns to string columns with alter table",
9393+
Dialect: "mysql",
93939394
SetUpScript: []string{
93949395
"create table t(pk int primary key, c0 enum('a', 'b', 'c'));",
93959396
"insert into t values(0, 'a'), (1, 'b'), (2, 'c');",
@@ -9404,8 +9405,9 @@ where
94049405
},
94059406
{
94069407
// https://github.com/dolthub/dolt/issues/9613
9407-
Skip: true,
9408-
Name: "Convert enum columns to string columns when copying table",
9408+
Skip: true,
9409+
Name: "Convert enum columns to string columns when copying table",
9410+
Dialect: "mysql",
94099411
SetUpScript: []string{
94109412
"create table t(pk int primary key, c0 enum('a', 'b', 'c'));",
94119413
"insert into t values(0, 'a'), (1, 'b'), (2, 'c');",
@@ -10032,7 +10034,8 @@ where
1003210034
},
1003310035
},
1003410036
{
10035-
Name: "Convert set columns to string columns with alter table",
10037+
Name: "Convert set columns to string columns with alter table",
10038+
Dialect: "mysql",
1003610039
SetUpScript: []string{
1003710040
"create table t(pk int primary key, c0 set('abc', 'def','ghi'))",
1003810041
"insert into t values(0, 'abc,def'), (1, 'def'), (2, 'ghi');",
@@ -10047,8 +10050,9 @@ where
1004710050
},
1004810051
{
1004910052
// https://github.com/dolthub/dolt/issues/9613
10050-
Skip: true,
10051-
Name: "Convert set columns to string columns when copying table",
10053+
Skip: true,
10054+
Name: "Convert set columns to string columns when copying table",
10055+
Dialect: "mysql",
1005210056
SetUpScript: []string{
1005310057
"create table t(pk int primary key, c0 set('abc', 'def','ghi'))",
1005410058
"insert into t values(0, 'abc,def'), (1, 'def'), (2, 'ghi');",

0 commit comments

Comments
 (0)