Skip to content

Commit 557e0ed

Browse files
committed
Alot of regression test fixes, mainly to compensate for moving
the DROP TABLE calls from the destroy.sql file to the 'types' .sql files, so that they are self-contained btree_index, hash_index and misc all fail as there seems to be missing a 'misc.out' expected file...have asked Thomas for one...
1 parent a475d4d commit 557e0ed

File tree

18 files changed

+44
-24
lines changed

18 files changed

+44
-24
lines changed

src/test/regress/expected/boolean.out

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,3 +177,5 @@ tf_12_ff_4|f1|f1
177177
|f |f
178178
(16 rows)
179179

180+
QUERY: DROP TABLE BOOLTBL1;
181+
QUERY: DROP TABLE BOOLTBL2;

src/test/regress/expected/box.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,3 +167,4 @@ one|f1 |f1
167167
|(3,3),(1,1)|(3,3),(3,3)
168168
(1 row)
169169

170+
QUERY: DROP TABLE BOX_TBL;

src/test/regress/expected/char.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,4 @@ two|f1
8181
|c
8282
(2 rows)
8383

84+
QUERY: DROP TABLE CHAR_TBL;

src/test/regress/expected/char16.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,4 @@ two|f1
101101
|d34aaasdf
102102
(2 rows)
103103

104+
QUERY: DROP TABLE CHAR16_TBL;

src/test/regress/expected/char2.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,4 @@ one|f1
9898
|34
9999
(1 row)
100100

101+
QUERY: DROP TABLE CHAR2_TBL;

src/test/regress/expected/char4.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,4 @@ three|f1
9494
|1234
9595
(3 rows)
9696

97+
QUERY: DROP TABLE CHAR4_TBL;

src/test/regress/expected/char8.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,4 @@ three|f1
103103
|12345678
104104
(3 rows)
105105

106+
QUERY: DROP TABLE CHAR8_TBL;

src/test/regress/expected/float4.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,3 +146,4 @@ five|f1
146146
|-1.23457e-20
147147
(5 rows)
148148

149+
QUERY: DROP TABLE FLOAT4_TBL;

src/test/regress/expected/float8.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,3 +223,4 @@ five|f1
223223
|-1.2345678901234e-200
224224
(5 rows)
225225

226+
QUERY: DROP TABLE FLOAT8_TBL;

src/test/regress/expected/int2.out

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ WARN:pg_atoi: error in "34.5": can't parse ".5"
77
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('32767');
88
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('-32767');
99
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('100000');
10-
WARN:pg_atoi: error reading "100000": Math result not representable
10+
WARN:pg_atoi: error reading "100000": Result too large
1111
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('asdf');
1212
WARN:pg_atoi: error in "asdf": can't parse "asdf"
1313
QUERY: SELECT '' AS five, INT2_TBL.*;
@@ -204,3 +204,4 @@ five| f1| x
204204
|-32767|-16383
205205
(5 rows)
206206

207+
QUERY: DROP TABLE INT2_TBL;

0 commit comments

Comments
 (0)