File tree Expand file tree Collapse file tree
contrib/ivorysql_ora/expected Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -175,52 +175,52 @@ SELECT * FROM LONG_TEXT ORDER BY II DESC;
175175(3 rows)
176176
177177DROP TABLE LONG_TEXT;
178-
179178-- rawtohex
180179SELECT sys.rawtohex('\xDEADBEEF'::bytea);
181- rawtohex
180+ rawtohex
182181----------
183182 DEADBEEF
184183(1 row)
185184
186185SELECT sys.rawtohex('\xFF'::raw);
187- rawtohex
186+ rawtohex
188187----------
189188 FF
190189(1 row)
191190
192191SELECT sys.rawtohex('hello'::text);
193- rawtohex
192+ rawtohex
194193------------
195194 68656C6C6F
196195(1 row)
197196
198197SELECT sys.rawtohex('hello'::varchar2);
199- rawtohex
198+ rawtohex
200199------------
201200 68656C6C6F
202201(1 row)
203202
204203SELECT sys.rawtohex(sys.hextoraw('DEADBEEF'));
205- rawtohex
204+ rawtohex
206205----------
207206 DEADBEEF
208207(1 row)
209208
210209SELECT sys.rawtohex(NULL) IS NULL;
211- ?column?
210+ ?column?
212211----------
213212 t
214213(1 row)
215214
216215SELECT sys.rawtohex('') IS NULL;
217- ?column?
216+ ?column?
218217----------
219218 t
220219(1 row)
221220
222221SELECT sys.rawtohex('\x'::bytea) IS NULL;
223- ?column?
222+ ?column?
224223----------
225224 t
226225(1 row)
226+
You can’t perform that action at this time.
0 commit comments