*** ./expected/constraints.out Mon Jul 28 13:50:13 2003 --- ./results/constraints.out Mon Jul 28 18:32:55 2003 *************** *** 80,102 **** CREATE TABLE CHECK2_TBL (x int, y text, z int, CONSTRAINT SEQUENCE_CON CHECK (x > 3 and y <> 'check failed' and z < 8)); INSERT INTO CHECK2_TBL VALUES (4, 'check ok', -2); INSERT INTO CHECK2_TBL VALUES (1, 'x check failed', -2); ! ERROR: new row for relation "check2_tbl" violates CHECK constraint "sequence_con" INSERT INTO CHECK2_TBL VALUES (5, 'z check failed', 10); ! ERROR: new row for relation "check2_tbl" violates CHECK constraint "sequence_con" INSERT INTO CHECK2_TBL VALUES (0, 'check failed', -2); ! ERROR: new row for relation "check2_tbl" violates CHECK constraint "sequence_con" INSERT INTO CHECK2_TBL VALUES (6, 'check failed', 11); ! ERROR: new row for relation "check2_tbl" violates CHECK constraint "sequence_con" INSERT INTO CHECK2_TBL VALUES (7, 'check ok', 7); SELECT '' AS two, * from CHECK2_TBL; ! two | x | y | z ! -----+---+----------+---- ! | 4 | check ok | -2 ! | 7 | check ok | 7 ! (2 rows) ! -- -- Check constraints on INSERT -- --- 80,100 ---- CREATE TABLE CHECK2_TBL (x int, y text, z int, CONSTRAINT SEQUENCE_CON CHECK (x > 3 and y <> 'check failed' and z < 8)); + ERROR: relation 126581 deleted while still in use INSERT INTO CHECK2_TBL VALUES (4, 'check ok', -2); + ERROR: relation "check2_tbl" does not exist INSERT INTO CHECK2_TBL VALUES (1, 'x check failed', -2); ! ERROR: relation "check2_tbl" does not exist INSERT INTO CHECK2_TBL VALUES (5, 'z check failed', 10); ! ERROR: relation "check2_tbl" does not exist INSERT INTO CHECK2_TBL VALUES (0, 'check failed', -2); ! ERROR: relation "check2_tbl" does not exist INSERT INTO CHECK2_TBL VALUES (6, 'check failed', 11); ! ERROR: relation "check2_tbl" does not exist INSERT INTO CHECK2_TBL VALUES (7, 'check ok', 7); + ERROR: relation "check2_tbl" does not exist SELECT '' AS two, * from CHECK2_TBL; ! ERROR: relation "check2_tbl" does not exist -- -- Check constraints on INSERT -- ====================================================================== *** ./expected/misc.out Mon Jul 28 13:50:13 2003 --- ./results/misc.out Mon Jul 28 18:33:04 2003 *************** *** 580,586 **** c c_star char_tbl - check2_tbl check_seq check_tbl circle_tbl --- 580,585 ---- *************** *** 660,666 **** toyemp varchar_tbl xacttest ! (96 rows) --SELECT name(equipment(hobby_construct(text 'skywalking', text 'mer'))) AS equip_name; SELECT hobbies_by_name('basketball'); --- 659,665 ---- toyemp varchar_tbl xacttest ! (95 rows) --SELECT name(equipment(hobby_construct(text 'skywalking', text 'mer'))) AS equip_name; SELECT hobbies_by_name('basketball'); ======================================================================