@@ -2707,12 +2707,12 @@ SELECT JSON_VALUE('{"a": "A"}', '$.a' RETURNING d1 DEFAULT 'C' ON EMPTY) = 'a';
27072707(1 row)
27082708
27092709SELECT JSON_VALUE('{"a": "A"}', '$.a' RETURNING d1 DEFAULT 'C'::d2 ON EMPTY) = 'a'; -- error
2710- ERROR: the collation of DEFAULT expression conflicts with RETURNING clause
2710+ ERROR: collation of DEFAULT expression conflicts with RETURNING clause
27112711LINE 1: ...ON_VALUE('{"a": "A"}', '$.a' RETURNING d1 DEFAULT 'C'::d2 ON...
27122712 ^
27132713DETAIL: "C" versus "case_insensitive"
27142714SELECT JSON_VALUE('{"a": "A"}', '$.a' RETURNING d1 DEFAULT 'C' COLLATE "C" ON EMPTY) = 'a'; -- error
2715- ERROR: the collation of DEFAULT expression conflicts with RETURNING clause
2715+ ERROR: collation of DEFAULT expression conflicts with RETURNING clause
27162716LINE 1: ...ON_VALUE('{"a": "A"}', '$.a' RETURNING d1 DEFAULT 'C' COLLAT...
27172717 ^
27182718DETAIL: "C" versus "case_insensitive"
@@ -2729,12 +2729,12 @@ SELECT JSON_VALUE('{"a": "A"}', '$.c' RETURNING d1 DEFAULT 'A' COLLATE case_inse
27292729(1 row)
27302730
27312731SELECT JSON_VALUE('{"a": "A"}', '$.c' RETURNING d1 DEFAULT 'A'::d2 ON EMPTY) = 'a'; -- error
2732- ERROR: the collation of DEFAULT expression conflicts with RETURNING clause
2732+ ERROR: collation of DEFAULT expression conflicts with RETURNING clause
27332733LINE 1: ...ON_VALUE('{"a": "A"}', '$.c' RETURNING d1 DEFAULT 'A'::d2 ON...
27342734 ^
27352735DETAIL: "C" versus "case_insensitive"
27362736SELECT JSON_VALUE('{"a": "A"}', '$.c' RETURNING d1 DEFAULT 'A' COLLATE "C" ON EMPTY) = 'a'; -- error
2737- ERROR: the collation of DEFAULT expression conflicts with RETURNING clause
2737+ ERROR: collation of DEFAULT expression conflicts with RETURNING clause
27382738LINE 1: ...ON_VALUE('{"a": "A"}', '$.c' RETURNING d1 DEFAULT 'A' COLLAT...
27392739 ^
27402740DETAIL: "C" versus "case_insensitive"
0 commit comments