@@ -1035,17 +1035,15 @@ select 'a\r = "\n\""'::jsquery;
10351035(1 row)
10361036
10371037select 'a\r = "\u0000"'::jsquery;
1038- jsquery
1039- ------------------
1040- "a\r" = "\u0000"
1041- (1 row)
1042-
1038+ ERROR: unsupported Unicode escape sequence
1039+ LINE 1: select 'a\r = "\u0000"'::jsquery;
1040+ ^
1041+ DETAIL: \u0000 cannot be converted to text.
10431042select 'a\r = \u0000'::jsquery;
1044- jsquery
1045- ------------------
1046- "a\r" = "\u0000"
1047- (1 row)
1048-
1043+ ERROR: unsupported Unicode escape sequence
1044+ LINE 1: select 'a\r = \u0000'::jsquery;
1045+ ^
1046+ DETAIL: \u0000 cannot be converted to text.
10491047select 'a\r = "\abcd"'::jsquery AS err;
10501048ERROR: bad jsquery representation
10511049LINE 1: select 'a\r = "\abcd"'::jsquery AS err;
@@ -1058,17 +1056,15 @@ select 'a\r = "\\abcd"'::jsquery;
10581056(1 row)
10591057
10601058select 'a\r = "x\u0000"'::jsquery;
1061- jsquery
1062- -------------------
1063- "a\r" = "x\u0000"
1064- (1 row)
1065-
1059+ ERROR: unsupported Unicode escape sequence
1060+ LINE 1: select 'a\r = "x\u0000"'::jsquery;
1061+ ^
1062+ DETAIL: \u0000 cannot be converted to text.
10661063select 'a\r = x\u0000'::jsquery;
1067- jsquery
1068- -------------------
1069- "a\r" = "x\u0000"
1070- (1 row)
1071-
1064+ ERROR: unsupported Unicode escape sequence
1065+ LINE 1: select 'a\r = x\u0000'::jsquery;
1066+ ^
1067+ DETAIL: \u0000 cannot be converted to text.
10721068select 'a\r = "x\abcd"'::jsquery AS err;
10731069ERROR: bad jsquery representation
10741070LINE 1: select 'a\r = "x\abcd"'::jsquery AS err;
@@ -1081,17 +1077,15 @@ select 'a\r = "x\\abcd"'::jsquery;
10811077(1 row)
10821078
10831079select 'a\r = "x\u0000x"'::jsquery;
1084- jsquery
1085- --------------------
1086- "a\r" = "x\u0000x"
1087- (1 row)
1088-
1080+ ERROR: unsupported Unicode escape sequence
1081+ LINE 1: select 'a\r = "x\u0000x"'::jsquery;
1082+ ^
1083+ DETAIL: \u0000 cannot be converted to text.
10891084select 'a\r = x\u0000x'::jsquery;
1090- jsquery
1091- --------------------
1092- "a\r" = "x\u0000x"
1093- (1 row)
1094-
1085+ ERROR: unsupported Unicode escape sequence
1086+ LINE 1: select 'a\r = x\u0000x'::jsquery;
1087+ ^
1088+ DETAIL: \u0000 cannot be converted to text.
10951089select 'a\r = "x\abcdx"'::jsquery AS err;
10961090ERROR: bad jsquery representation
10971091LINE 1: select 'a\r = "x\abcdx"'::jsquery AS err;
@@ -1104,17 +1098,15 @@ select 'a\r = "x\\abcdx"'::jsquery;
11041098(1 row)
11051099
11061100select 'a\r = "\u0000x"'::jsquery;
1107- jsquery
1108- -------------------
1109- "a\r" = "\u0000x"
1110- (1 row)
1111-
1101+ ERROR: unsupported Unicode escape sequence
1102+ LINE 1: select 'a\r = "\u0000x"'::jsquery;
1103+ ^
1104+ DETAIL: \u0000 cannot be converted to text.
11121105select 'a\r = \u0000x'::jsquery;
1113- jsquery
1114- -------------------
1115- "a\r" = "\u0000x"
1116- (1 row)
1117-
1106+ ERROR: unsupported Unicode escape sequence
1107+ LINE 1: select 'a\r = \u0000x'::jsquery;
1108+ ^
1109+ DETAIL: \u0000 cannot be converted to text.
11181110select 'a\r = "\abcdx"'::jsquery AS err;
11191111ERROR: bad jsquery representation
11201112LINE 1: select 'a\r = "\abcdx"'::jsquery AS err;