Fixed test/expected.
authorHiroshi Saito <hiroshi@winpg.jp>
Wed, 14 May 2014 14:37:48 +0000 (23:37 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Wed, 14 May 2014 14:37:48 +0000 (23:37 +0900)
test/expected/catalogfunctions.out
test/expected/sampletables.out

index dba7d558d1468ffb0484e8739594497fa5a23d9e..402cf4bb80a57587d5495dcbbe78c6761a1edede 100644 (file)
@@ -186,6 +186,11 @@ contrib_regression public  testtab1    _SYSTEM SELECT  YES
 contrib_regression public  testtab1    _SYSTEM UPDATE  YES
 contrib_regression public  testtab1    _SYSTEM DELETE  YES
 contrib_regression public  testtab1    _SYSTEM REFERENCES  YES
+contrib_regression public  testtab1    _SYSTEM INSERT  YES
+contrib_regression public  testtab1    _SYSTEM SELECT  YES
+contrib_regression public  testtab1    _SYSTEM UPDATE  YES
+contrib_regression public  testtab1    _SYSTEM DELETE  YES
+contrib_regression public  testtab1    _SYSTEM REFERENCES  YES
 Result set:
 contrib_regression public  testtab1    TABLE   
 contrib_regression public  testtab_fk  TABLE   
index e4fcb712589efdfdf80310d3f2bbf786ba9443f9..8e9585bcde500fe888c94e5d4d73581c8eb42f26 100644 (file)
@@ -1,5 +1,6 @@
 -- This file creates some tables to be used in the tests
 CREATE TABLE testtab1 (id integer PRIMARY KEY, t varchar(20));
+NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "testtab1_pkey" for table "testtab1"
 INSERT INTO testtab1 VALUES (1, 'foo');
 INSERT INTO testtab1 VALUES (2, 'bar');
 INSERT INTO testtab1 VALUES (3, 'foobar');