File tree 2 files changed +2
-2
lines changed
src/test/regress/expected 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ERROR: pg_atoi: error in "34.5": can't parse ".5"
7
7
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('32767');
8
8
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('-32767');
9
9
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('100000');
10
- ERROR: pg_atoi: error reading "100000": Math result not representable
10
+ ERROR: pg_atoi: error reading "100000": Numerical result out of range
11
11
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('asdf');
12
12
ERROR: pg_atoi: error in "asdf": can't parse "asdf"
13
13
QUERY: SELECT '' AS five, INT2_TBL.*;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ERROR: pg_atoi: error in "34.5": can't parse ".5"
7
7
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('2147483647');
8
8
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('-2147483647');
9
9
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('1000000000000');
10
- ERROR: pg_atoi: error reading "1000000000000": Math result not representable
10
+ ERROR: pg_atoi: error reading "1000000000000": Numerical result out of range
11
11
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('asdf');
12
12
ERROR: pg_atoi: error in "asdf": can't parse "asdf"
13
13
QUERY: SELECT '' AS five, INT4_TBL.*;
You can’t perform that action at this time.
0 commit comments