an untyped literal in the CASE's test expression. This adds test
coverage for a bug that was fixed by Tom on January 12.
6 | 6
(1 row)
+-- Test for cases involving untyped literals in test expression
+SELECT CASE 'a' WHEN 'a' THEN 1 ELSE 2 END;
+ case
+------
+ 1
+(1 row)
+
--
-- Examples of targets involving tables
--
ELSE 7
END AS "Two WHEN with default";
+-- Test for cases involving untyped literals in test expression
+SELECT CASE 'a' WHEN 'a' THEN 1 ELSE 2 END;
+
--
-- Examples of targets involving tables
--