Skip to content

Commit fef7b74

Browse files
committed
unskip enum conversion tests
1 parent 8669364 commit fef7b74

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

enginetest/queries/script_queries.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8887,7 +8887,6 @@ where
88878887
},
88888888
{
88898889
// https://github.com/dolthub/dolt/issues/8598
8890-
Skip: true,
88918890
Query: "select (case e when 'abc' then e when 'defg' then e when 'hijkl' then 'something' end) as e from t order by e;",
88928891
Expected: []sql.Row{
88938892
{"abc"},
@@ -8897,12 +8896,11 @@ where
88978896
},
88988897
{
88998898
// https://github.com/dolthub/dolt/issues/8598
8900-
Skip: true,
89018899
Query: "select (case e when 'abc' then e when 'defg' then e when 'hijkl' then 123 end) as e from t order by e;",
89028900
Expected: []sql.Row{
89038901
{"123"},
89048902
{"abc"},
8905-
{"def"},
8903+
{"defg"},
89068904
},
89078905
},
89088906
{

0 commit comments

Comments
 (0)