Skip to content

Commit 430c917

Browse files
committed
fix the unmatch of regression test
1 parent 06a29b0 commit 430c917

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

contrib/ivorysql_ora/expected/ora_raw_long.out

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -175,52 +175,52 @@ SELECT * FROM LONG_TEXT ORDER BY II DESC;
175175
(3 rows)
176176

177177
DROP TABLE LONG_TEXT;
178-
179178
-- rawtohex
180179
SELECT sys.rawtohex('\xDEADBEEF'::bytea);
181-
rawtohex
180+
rawtohex
182181
----------
183182
DEADBEEF
184183
(1 row)
185184

186185
SELECT sys.rawtohex('\xFF'::raw);
187-
rawtohex
186+
rawtohex
188187
----------
189188
FF
190189
(1 row)
191190

192191
SELECT sys.rawtohex('hello'::text);
193-
rawtohex
192+
rawtohex
194193
------------
195194
68656C6C6F
196195
(1 row)
197196

198197
SELECT sys.rawtohex('hello'::varchar2);
199-
rawtohex
198+
rawtohex
200199
------------
201200
68656C6C6F
202201
(1 row)
203202

204203
SELECT sys.rawtohex(sys.hextoraw('DEADBEEF'));
205-
rawtohex
204+
rawtohex
206205
----------
207206
DEADBEEF
208207
(1 row)
209208

210209
SELECT sys.rawtohex(NULL) IS NULL;
211-
?column?
210+
?column?
212211
----------
213212
t
214213
(1 row)
215214

216215
SELECT sys.rawtohex('') IS NULL;
217-
?column?
216+
?column?
218217
----------
219218
t
220219
(1 row)
221220

222221
SELECT sys.rawtohex('\x'::bytea) IS NULL;
223-
?column?
222+
?column?
224223
----------
225224
t
226225
(1 row)
226+

0 commit comments

Comments
 (0)