corresponds to notice the message level change. REL-09_03_0300
authorHiroshi Saito <hiroshi@winpg.jp>
Thu, 15 May 2014 13:32:20 +0000 (22:32 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Thu, 15 May 2014 13:32:20 +0000 (22:32 +0900)
test/expected/sampletables.out
test/sql/sampletables.sql

index 8e9585bcde500fe888c94e5d4d73581c8eb42f26..f982a131b0eb7dd5d89dc1cdb7a7800b510ef06f 100644 (file)
@@ -1,6 +1,6 @@
 -- This file creates some tables to be used in the tests
+SET client_min_messages TO WARNING;
 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');
index a917de7fcd8fcad8c22d0775966dbf620babdf5c..c0d5eb87b5dc01cb4b9264e19a5295a7c8defa34 100644 (file)
@@ -1,4 +1,5 @@
 -- This file creates some tables to be used in the tests
+SET client_min_messages TO WARNING;
 
 CREATE TABLE testtab1 (id integer PRIMARY KEY, t varchar(20));
 INSERT INTO testtab1 VALUES (1, 'foo');