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 0d45116 commit 48e2bb1Copy full SHA for 48e2bb1
src/test/regress/expected/case.out
@@ -72,6 +72,13 @@ SELECT '6' AS "One",
72
6 | 6
73
(1 row)
74
75
+-- Test for cases involving untyped literals in test expression
76
+SELECT CASE 'a' WHEN 'a' THEN 1 ELSE 2 END;
77
+ case
78
+------
79
+ 1
80
+(1 row)
81
+
82
--
83
-- Examples of targets involving tables
84
src/test/regress/sql/case.sql
@@ -58,6 +58,9 @@ SELECT '6' AS "One",
58
ELSE 7
59
END AS "Two WHEN with default";
60
61
62
63
64
65
66
0 commit comments