summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/int2.out
blob: 4e03a5faee0ce40c6c44f6239ee91c671d7fed8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
--
-- INT2
--
-- int2_tbl was already created and filled in test_setup.sql.
-- Here we just try to insert bad values.
INSERT INTO INT2_TBL(f1) VALUES ('34.5');
ERROR:  invalid input syntax for type smallint: "34.5"
LINE 1: INSERT INTO INT2_TBL(f1) VALUES ('34.5');
                                         ^
INSERT INTO INT2_TBL(f1) VALUES ('100000');
ERROR:  value "100000" is out of range for type smallint
LINE 1: INSERT INTO INT2_TBL(f1) VALUES ('100000');
                                         ^
INSERT INTO INT2_TBL(f1) VALUES ('asdf');
ERROR:  invalid input syntax for type smallint: "asdf"
LINE 1: INSERT INTO INT2_TBL(f1) VALUES ('asdf');
                                         ^
INSERT INTO INT2_TBL(f1) VALUES ('    ');
ERROR:  invalid input syntax for type smallint: "    "
LINE 1: INSERT INTO INT2_TBL(f1) VALUES ('    ');
                                         ^
INSERT INTO INT2_TBL(f1) VALUES ('- 1234');
ERROR:  invalid input syntax for type smallint: "- 1234"
LINE 1: INSERT INTO INT2_TBL(f1) VALUES ('- 1234');
                                         ^
INSERT INTO INT2_TBL(f1) VALUES ('4 444');
ERROR:  invalid input syntax for type smallint: "4 444"
LINE 1: INSERT INTO INT2_TBL(f1) VALUES ('4 444');
                                         ^
INSERT INTO INT2_TBL(f1) VALUES ('123 dt');
ERROR:  invalid input syntax for type smallint: "123 dt"
LINE 1: INSERT INTO INT2_TBL(f1) VALUES ('123 dt');
                                         ^
INSERT INTO INT2_TBL(f1) VALUES ('');
ERROR:  invalid input syntax for type smallint: ""
LINE 1: INSERT INTO INT2_TBL(f1) VALUES ('');
                                         ^
SELECT * FROM INT2_TBL;
   f1   
--------
      0
   1234
  -1234
  32767
 -32767
(5 rows)

-- Also try it with non-error-throwing API
SELECT pg_input_is_valid('34', 'int2');
 pg_input_is_valid 
-------------------
 t
(1 row)

SELECT pg_input_is_valid('asdf', 'int2');
 pg_input_is_valid 
-------------------
 f
(1 row)

SELECT pg_input_is_valid('50000', 'int2');
 pg_input_is_valid 
-------------------
 f
(1 row)

SELECT * FROM pg_input_error_info('50000', 'int2');
                     message                     | detail | hint | sql_error_code 
-------------------------------------------------+--------+------+----------------
 value "50000" is out of range for type smallint |        |      | 22003
(1 row)

-- While we're here, check int2vector as well
SELECT pg_input_is_valid(' 1 3  5 ', 'int2vector');
 pg_input_is_valid 
-------------------
 t
(1 row)

SELECT * FROM pg_input_error_info('1 asdf', 'int2vector');
                    message                     | detail | hint | sql_error_code 
------------------------------------------------+--------+------+----------------
 invalid input syntax for type smallint: "asdf" |        |      | 22P02
(1 row)

SELECT * FROM pg_input_error_info('50000', 'int2vector');
                     message                     | detail | hint | sql_error_code 
-------------------------------------------------+--------+------+----------------
 value "50000" is out of range for type smallint |        |      | 22003
(1 row)

SELECT * FROM INT2_TBL AS f(a, b);
ERROR:  table "f" has 1 columns available but 2 columns specified
SELECT * FROM (TABLE int2_tbl) AS s (a, b);
ERROR:  table "s" has 1 columns available but 2 columns specified
SELECT i.* FROM INT2_TBL i WHERE i.f1 <> int2 '0';
   f1   
--------
   1234
  -1234
  32767
 -32767
(4 rows)

SELECT i.* FROM INT2_TBL i WHERE i.f1 <> int4 '0';
   f1   
--------
   1234
  -1234
  32767
 -32767
(4 rows)

SELECT i.* FROM INT2_TBL i WHERE i.f1 = int2 '0';
 f1 
----
  0
(1 row)

SELECT i.* FROM INT2_TBL i WHERE i.f1 = int4 '0';
 f1 
----
  0
(1 row)

SELECT i.* FROM INT2_TBL i WHERE i.f1 < int2 '0';
   f1   
--------
  -1234
 -32767
(2 rows)

SELECT i.* FROM INT2_TBL i WHERE i.f1 < int4 '0';
   f1   
--------
  -1234
 -32767
(2 rows)

SELECT i.* FROM INT2_TBL i WHERE i.f1 <= int2 '0';
   f1   
--------
      0
  -1234
 -32767
(3 rows)

SELECT i.* FROM INT2_TBL i WHERE i.f1 <= int4 '0';
   f1   
--------
      0
  -1234
 -32767
(3 rows)

SELECT i.* FROM INT2_TBL i WHERE i.f1 > int2 '0';
  f1   
-------
  1234
 32767
(2 rows)

SELECT i.* FROM INT2_TBL i WHERE i.f1 > int4 '0';
  f1   
-------
  1234
 32767
(2 rows)

SELECT i.* FROM INT2_TBL i WHERE i.f1 >= int2 '0';
  f1   
-------
     0
  1234
 32767
(3 rows)

SELECT i.* FROM INT2_TBL i WHERE i.f1 >= int4 '0';
  f1   
-------
     0
  1234
 32767
(3 rows)

-- positive odds
SELECT i.* FROM INT2_TBL i WHERE (i.f1 % int2 '2') = int2 '1';
  f1   
-------
 32767
(1 row)

-- any evens
SELECT i.* FROM INT2_TBL i WHERE (i.f1 % int4 '2') = int2 '0';
  f1   
-------
     0
  1234
 -1234
(3 rows)

SELECT i.f1, i.f1 * int2 '2' AS x FROM INT2_TBL i;
ERROR:  smallint out of range
SELECT i.f1, i.f1 * int2 '2' AS x FROM INT2_TBL i
WHERE abs(f1) < 16384;
  f1   |   x   
-------+-------
     0 |     0
  1234 |  2468
 -1234 | -2468
(3 rows)

SELECT i.f1, i.f1 * int4 '2' AS x FROM INT2_TBL i;
   f1   |   x    
--------+--------
      0 |      0
   1234 |   2468
  -1234 |  -2468
  32767 |  65534
 -32767 | -65534
(5 rows)

SELECT i.f1, i.f1 + int2 '2' AS x FROM INT2_TBL i;
ERROR:  smallint out of range
SELECT i.f1, i.f1 + int2 '2' AS x FROM INT2_TBL i
WHERE f1 < 32766;
   f1   |   x    
--------+--------
      0 |      2
   1234 |   1236
  -1234 |  -1232
 -32767 | -32765
(4 rows)

SELECT i.f1, i.f1 + int4 '2' AS x FROM INT2_TBL i;
   f1   |   x    
--------+--------
      0 |      2
   1234 |   1236
  -1234 |  -1232
  32767 |  32769
 -32767 | -32765
(5 rows)

SELECT i.f1, i.f1 - int2 '2' AS x FROM INT2_TBL i;
ERROR:  smallint out of range
SELECT i.f1, i.f1 - int2 '2' AS x FROM INT2_TBL i
WHERE f1 > -32767;
  f1   |   x   
-------+-------
     0 |    -2
  1234 |  1232
 -1234 | -1236
 32767 | 32765
(4 rows)

SELECT i.f1, i.f1 - int4 '2' AS x FROM INT2_TBL i;
   f1   |   x    
--------+--------
      0 |     -2
   1234 |   1232
  -1234 |  -1236
  32767 |  32765
 -32767 | -32769
(5 rows)

SELECT i.f1, i.f1 / int2 '2' AS x FROM INT2_TBL i;
   f1   |   x    
--------+--------
      0 |      0
   1234 |    617
  -1234 |   -617
  32767 |  16383
 -32767 | -16383
(5 rows)

SELECT i.f1, i.f1 / int4 '2' AS x FROM INT2_TBL i;
   f1   |   x    
--------+--------
      0 |      0
   1234 |    617
  -1234 |   -617
  32767 |  16383
 -32767 | -16383
(5 rows)

-- corner cases
SELECT (-1::int2<<15)::text;
  text  
--------
 -32768
(1 row)

SELECT ((-1::int2<<15)+1::int2)::text;
  text  
--------
 -32767
(1 row)

-- check sane handling of INT16_MIN overflow cases
SELECT (-32768)::int2 * (-1)::int2;
ERROR:  smallint out of range
SELECT (-32768)::int2 / (-1)::int2;
ERROR:  smallint out of range
SELECT (-32768)::int2 % (-1)::int2;
 ?column? 
----------
        0
(1 row)

-- check rounding when casting from float
SELECT x, x::int2 AS int2_value
FROM (VALUES (-2.5::float8),
             (-1.5::float8),
             (-0.5::float8),
             (0.0::float8),
             (0.5::float8),
             (1.5::float8),
             (2.5::float8)) t(x);
  x   | int2_value 
------+------------
 -2.5 |         -2
 -1.5 |         -2
 -0.5 |          0
    0 |          0
  0.5 |          0
  1.5 |          2
  2.5 |          2
(7 rows)

-- check rounding when casting from numeric
SELECT x, x::int2 AS int2_value
FROM (VALUES (-2.5::numeric),
             (-1.5::numeric),
             (-0.5::numeric),
             (0.0::numeric),
             (0.5::numeric),
             (1.5::numeric),
             (2.5::numeric)) t(x);
  x   | int2_value 
------+------------
 -2.5 |         -3
 -1.5 |         -2
 -0.5 |         -1
  0.0 |          0
  0.5 |          1
  1.5 |          2
  2.5 |          3
(7 rows)

-- non-decimal literals
SELECT int2 '0b100101';
 int2 
------
   37
(1 row)

SELECT int2 '0o273';
 int2 
------
  187
(1 row)

SELECT int2 '0x42F';
 int2 
------
 1071
(1 row)

SELECT int2 '0b';
ERROR:  invalid input syntax for type smallint: "0b"
LINE 1: SELECT int2 '0b';
                    ^
SELECT int2 '0o';
ERROR:  invalid input syntax for type smallint: "0o"
LINE 1: SELECT int2 '0o';
                    ^
SELECT int2 '0x';
ERROR:  invalid input syntax for type smallint: "0x"
LINE 1: SELECT int2 '0x';
                    ^
-- cases near overflow
SELECT int2 '0b111111111111111';
 int2  
-------
 32767
(1 row)

SELECT int2 '0b1000000000000000';
ERROR:  value "0b1000000000000000" is out of range for type smallint
LINE 1: SELECT int2 '0b1000000000000000';
                    ^
SELECT int2 '0o77777';
 int2  
-------
 32767
(1 row)

SELECT int2 '0o100000';
ERROR:  value "0o100000" is out of range for type smallint
LINE 1: SELECT int2 '0o100000';
                    ^
SELECT int2 '0x7FFF';
 int2  
-------
 32767
(1 row)

SELECT int2 '0x8000';
ERROR:  value "0x8000" is out of range for type smallint
LINE 1: SELECT int2 '0x8000';
                    ^
SELECT int2 '-0b1000000000000000';
  int2  
--------
 -32768
(1 row)

SELECT int2 '-0b1000000000000001';
ERROR:  value "-0b1000000000000001" is out of range for type smallint
LINE 1: SELECT int2 '-0b1000000000000001';
                    ^
SELECT int2 '-0o100000';
  int2  
--------
 -32768
(1 row)

SELECT int2 '-0o100001';
ERROR:  value "-0o100001" is out of range for type smallint
LINE 1: SELECT int2 '-0o100001';
                    ^
SELECT int2 '-0x8000';
  int2  
--------
 -32768
(1 row)

SELECT int2 '-0x8001';
ERROR:  value "-0x8001" is out of range for type smallint
LINE 1: SELECT int2 '-0x8001';
                    ^
-- underscores
SELECT int2 '1_000';
 int2 
------
 1000
(1 row)

SELECT int2 '1_2_3';
 int2 
------
  123
(1 row)

SELECT int2 '0xE_FF';
 int2 
------
 3839
(1 row)

SELECT int2 '0o2_73';
 int2 
------
  187
(1 row)

SELECT int2 '0b_10_0101';
 int2 
------
   37
(1 row)

-- error cases
SELECT int2 '_100';
ERROR:  invalid input syntax for type smallint: "_100"
LINE 1: SELECT int2 '_100';
                    ^
SELECT int2 '100_';
ERROR:  invalid input syntax for type smallint: "100_"
LINE 1: SELECT int2 '100_';
                    ^
SELECT int2 '10__000';
ERROR:  invalid input syntax for type smallint: "10__000"
LINE 1: SELECT int2 '10__000';
                    ^