QUERY: INSERT INTO INT2_TBL(f1) VALUES ('32767');
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('-32767');
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('100000');
-WARN:pg_atoi: error reading "100000": Math result not representable
+WARN:pg_atoi: error reading "100000": Result too large
QUERY: INSERT INTO INT2_TBL(f1) VALUES ('asdf');
WARN:pg_atoi: error in "asdf": can't parse "asdf"
QUERY: SELECT '' AS five, INT2_TBL.*;
|-32767|-16383
(5 rows)
+QUERY: DROP TABLE INT2_TBL;
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('2147483647');
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('-2147483647');
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('1000000000000');
-WARN:pg_atoi: error reading "1000000000000": Math result not representable
+WARN:pg_atoi: error reading "1000000000000": Result too large
QUERY: INSERT INTO INT4_TBL(f1) VALUES ('asdf');
WARN:pg_atoi: error in "asdf": can't parse "asdf"
QUERY: SELECT '' AS five, INT4_TBL.*;
3
(1 row)
+QUERY: DROP TABLE INT4_TBL;
QUERY: INSERT INTO OIDINT2_TBL(f1) VALUES ('987/-1234');
QUERY: INSERT INTO OIDINT2_TBL(f1) VALUES ('123456');
QUERY: INSERT INTO OIDINT2_TBL(f1) VALUES ('123456/123456');
-WARN:pg_atoi: error reading "123456": Math result not representable
+WARN:pg_atoi: error reading "123456": Result too large
QUERY: INSERT INTO OIDINT2_TBL(f1) VALUES ('');
QUERY: INSERT INTO OIDINT2_TBL(f1) VALUES ('asdfasd');
WARN:pg_atoi: error in "asdfasd": can't parse "asdfasd"
|123456/0
(1 row)
+QUERY: DROP TABLE OIDINT2_TBL;
QUERY: INSERT INTO OIDINT4_TBL(f1) VALUES ('987/-1234');
QUERY: INSERT INTO OIDINT4_TBL(f1) VALUES ('123456');
QUERY: INSERT INTO OIDINT4_TBL(f1) VALUES ('123456/1234568901234567890');
-WARN:pg_atoi: error reading "1234568901234567890": Math result not representable
+WARN:pg_atoi: error reading "1234568901234567890": Result too large
QUERY: INSERT INTO OIDINT4_TBL(f1) VALUES ('');
QUERY: INSERT INTO OIDINT4_TBL(f1) VALUES ('asdfasd');
WARN:pg_atoi: error in "asdfasd": can't parse "asdfasd"
|123456/0
(1 row)
+QUERY: DROP TABLE OIDINT4_TBL;
-- CLASS POPULATION
-- (any resemblance to real life is purely coincidental)
--
-COPY onek FROM '_CWD_/../data/onek.data';
+COPY onek FROM '_CWD_/data/onek.data';
-COPY onek TO '_OBJWD_/results/onek.data';
+COPY onek TO '_CWD_/results/onek.data';
DELETE FROM onek;
-COPY onek FROM '_OBJWD_/results/onek.data';
+COPY onek FROM '_CWD_/results/onek.data';
-COPY tenk1 FROM '_CWD_/../data/tenk.data';
+COPY tenk1 FROM '_CWD_/data/tenk.data';
-COPY slow_emp4000 FROM '_CWD_/../data/rect.data';
+COPY slow_emp4000 FROM '_CWD_/data/rect.data';
-COPY person FROM '_CWD_/../data/person.data';
+COPY person FROM '_CWD_/data/person.data';
-COPY emp FROM '_CWD_/../data/emp.data';
+COPY emp FROM '_CWD_/data/emp.data';
-COPY student FROM '_CWD_/../data/student.data';
+COPY student FROM '_CWD_/data/student.data';
-COPY stud_emp FROM '_CWD_/../data/stud_emp.data';
+COPY stud_emp FROM '_CWD_/data/stud_emp.data';
-COPY road FROM '_CWD_/../data/streets.data';
+COPY road FROM '_CWD_/data/streets.data';
-COPY real_city FROM '_CWD_/../data/real_city.data';
+COPY real_city FROM '_CWD_/data/real_city.data';
-COPY hash_i4_heap FROM '_CWD_/../data/hash.data';
+COPY hash_i4_heap FROM '_CWD_/data/hash.data';
-COPY hash_c16_heap FROM '_CWD_/../data/hash.data';
+COPY hash_c16_heap FROM '_CWD_/data/hash.data';
-COPY hash_txt_heap FROM '_CWD_/../data/hash.data';
+COPY hash_txt_heap FROM '_CWD_/data/hash.data';
-COPY hash_f8_heap FROM '_CWD_/../data/hash.data';
+COPY hash_f8_heap FROM '_CWD_/data/hash.data';
-- the data in this file has a lot of duplicates in the index key
-- fields, leading to long bucket chains and lots of table expansion.
-- this is therefore a stress test of the bucket overflow code (unlike
-- the data in hash.data, which has unique index keys).
--
--- COPY hash_ovfl_heap FROM '_CWD_/../data/hashovfl.data';
+-- COPY hash_ovfl_heap FROM '_CWD_/data/hashovfl.data';
-COPY bt_i4_heap FROM '_CWD_/../data/desc.data';
+COPY bt_i4_heap FROM '_CWD_/data/desc.data';
-COPY bt_c16_heap FROM '_CWD_/../data/hash.data';
+COPY bt_c16_heap FROM '_CWD_/data/hash.data';
-COPY bt_txt_heap FROM '_CWD_/../data/desc.data';
+COPY bt_txt_heap FROM '_CWD_/data/desc.data';
-COPY bt_f8_heap FROM '_CWD_/../data/hash.data';
+COPY bt_f8_heap FROM '_CWD_/data/hash.data';