We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8669364 commit fef7b74Copy full SHA for fef7b74
enginetest/queries/script_queries.go
@@ -8887,7 +8887,6 @@ where
8887
},
8888
{
8889
// https://github.com/dolthub/dolt/issues/8598
8890
- Skip: true,
8891
Query: "select (case e when 'abc' then e when 'defg' then e when 'hijkl' then 'something' end) as e from t order by e;",
8892
Expected: []sql.Row{
8893
{"abc"},
@@ -8897,12 +8896,11 @@ where
8897
8896
8898
8899
8900
8901
Query: "select (case e when 'abc' then e when 'defg' then e when 'hijkl' then 123 end) as e from t order by e;",
8902
8903
{"123"},
8904
8905
- {"def"},
+ {"defg"},
8906
8907
8908
0 commit comments