@@ -1035,17 +1035,15 @@ select 'a\r = "\n\""'::jsquery;
1035
1035
(1 row)
1036
1036
1037
1037
select '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.
1043
1042
select '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.
1049
1047
select 'a\r = "\abcd"'::jsquery AS err;
1050
1048
ERROR: bad jsquery representation
1051
1049
LINE 1: select 'a\r = "\abcd"'::jsquery AS err;
@@ -1058,17 +1056,15 @@ select 'a\r = "\\abcd"'::jsquery;
1058
1056
(1 row)
1059
1057
1060
1058
select '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.
1066
1063
select '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.
1072
1068
select 'a\r = "x\abcd"'::jsquery AS err;
1073
1069
ERROR: bad jsquery representation
1074
1070
LINE 1: select 'a\r = "x\abcd"'::jsquery AS err;
@@ -1081,17 +1077,15 @@ select 'a\r = "x\\abcd"'::jsquery;
1081
1077
(1 row)
1082
1078
1083
1079
select '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.
1089
1084
select '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.
1095
1089
select 'a\r = "x\abcdx"'::jsquery AS err;
1096
1090
ERROR: bad jsquery representation
1097
1091
LINE 1: select 'a\r = "x\abcdx"'::jsquery AS err;
@@ -1104,17 +1098,15 @@ select 'a\r = "x\\abcdx"'::jsquery;
1104
1098
(1 row)
1105
1099
1106
1100
select '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.
1112
1105
select '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.
1118
1110
select 'a\r = "\abcdx"'::jsquery AS err;
1119
1111
ERROR: bad jsquery representation
1120
1112
LINE 1: select 'a\r = "\abcdx"'::jsquery AS err;
0 commit comments