Consistently use "superuser" instead of "super user"
[pgsql.git] / src / test / regress / expected / jsonpath_encoding_1.out
blob005136c9657a846efeeaf08c04b27159361ee7e7
1 --
2 -- encoding-sensitive tests for jsonpath
3 --
4 -- We provide expected-results files for UTF8 (jsonpath_encoding.out)
5 -- and for SQL_ASCII (jsonpath_encoding_1.out).  Skip otherwise.
6 SELECT getdatabaseencoding() NOT IN ('UTF8', 'SQL_ASCII')
7        AS skip_test \gset
8 \if :skip_test
9 \quit
10 \endif
11 SELECT getdatabaseencoding();           -- just to label the results files
12  getdatabaseencoding 
13 ---------------------
14  SQL_ASCII
15 (1 row)
17 -- checks for double-quoted values
18 -- basic unicode input
19 SELECT '"\u"'::jsonpath;                -- ERROR, incomplete escape
20 ERROR:  invalid unicode sequence at or near "\u" of jsonpath input
21 LINE 1: SELECT '"\u"'::jsonpath;
22                ^
23 SELECT '"\u00"'::jsonpath;              -- ERROR, incomplete escape
24 ERROR:  invalid unicode sequence at or near "\u00" of jsonpath input
25 LINE 1: SELECT '"\u00"'::jsonpath;
26                ^
27 SELECT '"\u000g"'::jsonpath;    -- ERROR, g is not a hex digit
28 ERROR:  invalid unicode sequence at or near "\u000" of jsonpath input
29 LINE 1: SELECT '"\u000g"'::jsonpath;
30                ^
31 SELECT '"\u0000"'::jsonpath;    -- OK, legal escape
32 ERROR:  unsupported Unicode escape sequence
33 LINE 1: SELECT '"\u0000"'::jsonpath;
34                ^
35 DETAIL:  \u0000 cannot be converted to text.
36 SELECT '"\uaBcD"'::jsonpath;    -- OK, uppercase and lower case both OK
37 ERROR:  conversion between UTF8 and SQL_ASCII is not supported
38 LINE 1: SELECT '"\uaBcD"'::jsonpath;
39                ^
40 -- handling of unicode surrogate pairs
41 select '"\ud83d\ude04\ud83d\udc36"'::jsonpath as correct_in_utf8;
42 ERROR:  conversion between UTF8 and SQL_ASCII is not supported
43 LINE 1: select '"\ud83d\ude04\ud83d\udc36"'::jsonpath as correct_in_...
44                ^
45 select '"\ud83d\ud83d"'::jsonpath; -- 2 high surrogates in a row
46 ERROR:  invalid input syntax for type jsonpath
47 LINE 1: select '"\ud83d\ud83d"'::jsonpath;
48                ^
49 DETAIL:  Unicode high surrogate must not follow a high surrogate.
50 select '"\ude04\ud83d"'::jsonpath; -- surrogates in wrong order
51 ERROR:  invalid input syntax for type jsonpath
52 LINE 1: select '"\ude04\ud83d"'::jsonpath;
53                ^
54 DETAIL:  Unicode low surrogate must follow a high surrogate.
55 select '"\ud83dX"'::jsonpath; -- orphan high surrogate
56 ERROR:  invalid input syntax for type jsonpath
57 LINE 1: select '"\ud83dX"'::jsonpath;
58                ^
59 DETAIL:  Unicode low surrogate must follow a high surrogate.
60 select '"\ude04X"'::jsonpath; -- orphan low surrogate
61 ERROR:  invalid input syntax for type jsonpath
62 LINE 1: select '"\ude04X"'::jsonpath;
63                ^
64 DETAIL:  Unicode low surrogate must follow a high surrogate.
65 --handling of simple unicode escapes
66 select '"the Copyright \u00a9 sign"'::jsonpath as correct_in_utf8;
67 ERROR:  conversion between UTF8 and SQL_ASCII is not supported
68 LINE 1: select '"the Copyright \u00a9 sign"'::jsonpath as correct_in...
69                ^
70 select '"dollar \u0024 character"'::jsonpath as correct_everywhere;
71   correct_everywhere  
72 ----------------------
73  "dollar $ character"
74 (1 row)
76 select '"dollar \\u0024 character"'::jsonpath as not_an_escape;
77        not_an_escape        
78 ----------------------------
79  "dollar \\u0024 character"
80 (1 row)
82 select '"null \u0000 escape"'::jsonpath as not_unescaped;
83 ERROR:  unsupported Unicode escape sequence
84 LINE 1: select '"null \u0000 escape"'::jsonpath as not_unescaped;
85                ^
86 DETAIL:  \u0000 cannot be converted to text.
87 select '"null \\u0000 escape"'::jsonpath as not_an_escape;
88      not_an_escape     
89 -----------------------
90  "null \\u0000 escape"
91 (1 row)
93 -- checks for quoted key names
94 -- basic unicode input
95 SELECT '$."\u"'::jsonpath;              -- ERROR, incomplete escape
96 ERROR:  invalid unicode sequence at or near "\u" of jsonpath input
97 LINE 1: SELECT '$."\u"'::jsonpath;
98                ^
99 SELECT '$."\u00"'::jsonpath;    -- ERROR, incomplete escape
100 ERROR:  invalid unicode sequence at or near "\u00" of jsonpath input
101 LINE 1: SELECT '$."\u00"'::jsonpath;
102                ^
103 SELECT '$."\u000g"'::jsonpath;  -- ERROR, g is not a hex digit
104 ERROR:  invalid unicode sequence at or near "\u000" of jsonpath input
105 LINE 1: SELECT '$."\u000g"'::jsonpath;
106                ^
107 SELECT '$."\u0000"'::jsonpath;  -- OK, legal escape
108 ERROR:  unsupported Unicode escape sequence
109 LINE 1: SELECT '$."\u0000"'::jsonpath;
110                ^
111 DETAIL:  \u0000 cannot be converted to text.
112 SELECT '$."\uaBcD"'::jsonpath;  -- OK, uppercase and lower case both OK
113 ERROR:  conversion between UTF8 and SQL_ASCII is not supported
114 LINE 1: SELECT '$."\uaBcD"'::jsonpath;
115                ^
116 -- handling of unicode surrogate pairs
117 select '$."\ud83d\ude04\ud83d\udc36"'::jsonpath as correct_in_utf8;
118 ERROR:  conversion between UTF8 and SQL_ASCII is not supported
119 LINE 1: select '$."\ud83d\ude04\ud83d\udc36"'::jsonpath as correct_i...
120                ^
121 select '$."\ud83d\ud83d"'::jsonpath; -- 2 high surrogates in a row
122 ERROR:  invalid input syntax for type jsonpath
123 LINE 1: select '$."\ud83d\ud83d"'::jsonpath;
124                ^
125 DETAIL:  Unicode high surrogate must not follow a high surrogate.
126 select '$."\ude04\ud83d"'::jsonpath; -- surrogates in wrong order
127 ERROR:  invalid input syntax for type jsonpath
128 LINE 1: select '$."\ude04\ud83d"'::jsonpath;
129                ^
130 DETAIL:  Unicode low surrogate must follow a high surrogate.
131 select '$."\ud83dX"'::jsonpath; -- orphan high surrogate
132 ERROR:  invalid input syntax for type jsonpath
133 LINE 1: select '$."\ud83dX"'::jsonpath;
134                ^
135 DETAIL:  Unicode low surrogate must follow a high surrogate.
136 select '$."\ude04X"'::jsonpath; -- orphan low surrogate
137 ERROR:  invalid input syntax for type jsonpath
138 LINE 1: select '$."\ude04X"'::jsonpath;
139                ^
140 DETAIL:  Unicode low surrogate must follow a high surrogate.
141 --handling of simple unicode escapes
142 select '$."the Copyright \u00a9 sign"'::jsonpath as correct_in_utf8;
143 ERROR:  conversion between UTF8 and SQL_ASCII is not supported
144 LINE 1: select '$."the Copyright \u00a9 sign"'::jsonpath as correct_...
145                ^
146 select '$."dollar \u0024 character"'::jsonpath as correct_everywhere;
147    correct_everywhere   
148 ------------------------
149  $."dollar $ character"
150 (1 row)
152 select '$."dollar \\u0024 character"'::jsonpath as not_an_escape;
153         not_an_escape         
154 ------------------------------
155  $."dollar \\u0024 character"
156 (1 row)
158 select '$."null \u0000 escape"'::jsonpath as not_unescaped;
159 ERROR:  unsupported Unicode escape sequence
160 LINE 1: select '$."null \u0000 escape"'::jsonpath as not_unescaped;
161                ^
162 DETAIL:  \u0000 cannot be converted to text.
163 select '$."null \\u0000 escape"'::jsonpath as not_an_escape;
164       not_an_escape      
165 -------------------------
166  $."null \\u0000 escape"
167 (1 row)