mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
Mop-up for 3522d0eaba
, which missed some alternative output files.
This commit is contained in:
@ -10,11 +10,11 @@ INSERT INTO INT8_TBL VALUES(+4567890123456789,'4567890123456789');
|
||||
INSERT INTO INT8_TBL VALUES('+4567890123456789','-4567890123456789');
|
||||
-- bad inputs
|
||||
INSERT INTO INT8_TBL(q1) VALUES (' ');
|
||||
ERROR: invalid input syntax for integer: " "
|
||||
ERROR: invalid input syntax for type bigint: " "
|
||||
LINE 1: INSERT INTO INT8_TBL(q1) VALUES (' ');
|
||||
^
|
||||
INSERT INTO INT8_TBL(q1) VALUES ('xxx');
|
||||
ERROR: invalid input syntax for integer: "xxx"
|
||||
ERROR: invalid input syntax for type bigint: "xxx"
|
||||
LINE 1: INSERT INTO INT8_TBL(q1) VALUES ('xxx');
|
||||
^
|
||||
INSERT INTO INT8_TBL(q1) VALUES ('3908203590239580293850293850329485');
|
||||
@ -26,15 +26,15 @@ ERROR: value "-1204982019841029840928340329840934" is out of range for type big
|
||||
LINE 1: INSERT INTO INT8_TBL(q1) VALUES ('-1204982019841029840928340...
|
||||
^
|
||||
INSERT INTO INT8_TBL(q1) VALUES ('- 123');
|
||||
ERROR: invalid input syntax for integer: "- 123"
|
||||
ERROR: invalid input syntax for type bigint: "- 123"
|
||||
LINE 1: INSERT INTO INT8_TBL(q1) VALUES ('- 123');
|
||||
^
|
||||
INSERT INTO INT8_TBL(q1) VALUES (' 345 5');
|
||||
ERROR: invalid input syntax for integer: " 345 5"
|
||||
ERROR: invalid input syntax for type bigint: " 345 5"
|
||||
LINE 1: INSERT INTO INT8_TBL(q1) VALUES (' 345 5');
|
||||
^
|
||||
INSERT INTO INT8_TBL(q1) VALUES ('');
|
||||
ERROR: invalid input syntax for integer: ""
|
||||
ERROR: invalid input syntax for type bigint: ""
|
||||
LINE 1: INSERT INTO INT8_TBL(q1) VALUES ('');
|
||||
^
|
||||
SELECT * FROM INT8_TBL;
|
||||
|
Reference in New Issue
Block a user