Fix error message to match that returned by new regression test reference
machine (linux-2.0.36 RH5.2 with RH5.2 patches).
This commit is contained in:
parent
630ed05063
commit
9f9823950a
@ -7,7 +7,7 @@ ERROR: pg_atoi: error in "34.5": can't parse ".5"
|
||||
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('32767');
|
||||
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('-32767');
|
||||
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('100000');
|
||||
ERROR: pg_atoi: error reading "100000": Math result not representable
|
||||
ERROR: pg_atoi: error reading "100000": Numerical result out of range
|
||||
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('asdf');
|
||||
ERROR: pg_atoi: error in "asdf": can't parse "asdf"
|
||||
QUERY: SELECT '' AS five, INT2_TBL.*;
|
||||
|
@ -7,7 +7,7 @@ ERROR: pg_atoi: error in "34.5": can't parse ".5"
|
||||
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('2147483647');
|
||||
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('-2147483647');
|
||||
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('1000000000000');
|
||||
ERROR: pg_atoi: error reading "1000000000000": Math result not representable
|
||||
ERROR: pg_atoi: error reading "1000000000000": Numerical result out of range
|
||||
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('asdf');
|
||||
ERROR: pg_atoi: error in "asdf": can't parse "asdf"
|
||||
QUERY: SELECT '' AS five, INT4_TBL.*;
|
||||
|
Loading…
x
Reference in New Issue
Block a user