@@ -9389,7 +9389,8 @@ where
9389
9389
},
9390
9390
},
9391
9391
{
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" ,
9393
9394
SetUpScript : []string {
9394
9395
"create table t(pk int primary key, c0 enum('a', 'b', 'c'));" ,
9395
9396
"insert into t values(0, 'a'), (1, 'b'), (2, 'c');" ,
@@ -9404,8 +9405,9 @@ where
9404
9405
},
9405
9406
{
9406
9407
// 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" ,
9409
9411
SetUpScript : []string {
9410
9412
"create table t(pk int primary key, c0 enum('a', 'b', 'c'));" ,
9411
9413
"insert into t values(0, 'a'), (1, 'b'), (2, 'c');" ,
@@ -10032,7 +10034,8 @@ where
10032
10034
},
10033
10035
},
10034
10036
{
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" ,
10036
10039
SetUpScript : []string {
10037
10040
"create table t(pk int primary key, c0 set('abc', 'def','ghi'))" ,
10038
10041
"insert into t values(0, 'abc,def'), (1, 'def'), (2, 'ghi');" ,
@@ -10047,8 +10050,9 @@ where
10047
10050
},
10048
10051
{
10049
10052
// 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" ,
10052
10056
SetUpScript : []string {
10053
10057
"create table t(pk int primary key, c0 set('abc', 'def','ghi'))" ,
10054
10058
"insert into t values(0, 'abc,def'), (1, 'def'), (2, 'ghi');" ,
0 commit comments