Skip to content

Commit 5e4478f

Browse files
committed
add more skipped tests
1 parent 5f28fd2 commit 5e4478f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

enginetest/queries/script_queries.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11449,6 +11449,8 @@ select * from t1 except (
1144911449
(' 3.2 12 4'),('-3.1234'),('-3.1a'),('-5+8'),('+3.1234'),
1145011450
('11d'),('11wha?'),('11'),('12'),('1a1'),('a1a1'),('11-5'),
1145111451
('3. 12 4'),('5.932887e+07'),('5.932887e+07abc'),('5.932887e7'),('5.932887e7abc')`,
11452+
"create table test02(pk int primary key)",
11453+
"insert into test02 values(11),(12),(13),(14),(15)",
1145211454
},
1145311455
Assertions: []ScriptTestAssertion{
1145411456
{
@@ -11610,6 +11612,20 @@ select * from t1 except (
1161011612
{"3. 12 4"},
1161111613
},
1161211614
},
11615+
{
11616+
// https://github.com/dolthub/dolt/issues/9739
11617+
Skip: true,
11618+
Dialect: "mysql",
11619+
Query: "select * from test02 where pk in ('11asdf')",
11620+
Expected: []sql.Row{{"11"}},
11621+
},
11622+
{
11623+
// https://github.com/dolthub/dolt/issues/9739
11624+
Skip: true,
11625+
Dialect: "mysql",
11626+
Query: "select * from test02 where pk='11.12asdf'",
11627+
Expected: []sql.Row{},
11628+
},
1161311629
},
1161411630
},
1161511631
}

0 commit comments

Comments
 (0)