aboutsummaryrefslogtreecommitdiffstats
path: root/main/pllua/9.3-notice-create-index.patch
blob: d30b62437ce0ba5f7cc3437a178e999460c92ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/expected/plluatest.out
+++ b/expected/plluatest.out
@@ -232,8 +232,8 @@
    1 | name  | data
 (1 row)
 
+SET client_min_messages = warning;
 CREATE TABLE tree (id INT PRIMARY KEY, lchild INT, rchild INT);
-NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "tree_pkey" for table "tree"
 CREATE FUNCTION filltree (t text, n int) RETURNS void AS $$
   local p = server.prepare("insert into " .. t .. " values($1, $2, $3)",
     {"int4", "int4", "int4"})
--- a/sql/plluatest.sql
+++ b/sql/plluatest.sql
@@ -160,6 +160,7 @@
 SELECT * FROM get_rows('name');
 
 
+SET client_min_messages = warning;
 CREATE TABLE tree (id INT PRIMARY KEY, lchild INT, rchild INT);
 
 CREATE FUNCTION filltree (t text, n int) RETURNS void AS $$