Skip to content

Commit ea1f169

Browse files
committed
add mysql dialect tag for query failing in Doltgres
1 parent ac836d7 commit ea1f169

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

enginetest/queries/script_queries.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11114,7 +11114,10 @@ where
1111411114
},
1111511115

1111611116
{
11117-
Name: "correct union field index",
11117+
// TODO: This test currently fails in Doltgres because Doltgres does not allow `create table...as select...`
11118+
// even though it's a valid Postgres query. Remove Dialect tag once fixed in Doltgres
11119+
Dialect: "mysql",
11120+
Name: "union field indexes",
1111811121
SetUpScript: []string{
1111911122
"create table t(id int primary key auto_increment, words varchar(100))",
1112011123
"insert into t(words) values ('foo'),('bar'),('baz'),('zap')",

0 commit comments

Comments
 (0)