summaryrefslogtreecommitdiffstats
path: root/main/pllua/9.3-notice-create-index.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-10-22 09:17:10 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-10-22 09:19:45 +0000
commit7829504193e18f04795cfb983bba4b994ca6971a (patch)
tree7a076949064776d38bd2669a7bc95c3d8d08aba8 /main/pllua/9.3-notice-create-index.patch
parent7a62b3143c0e4e4e3471f66c698e3bd48ca73e7b (diff)
downloadaports-7829504193e18f04795cfb983bba4b994ca6971a.tar.bz2
aports-7829504193e18f04795cfb983bba4b994ca6971a.tar.xz
main/pllua: upgrade to 1.0
Diffstat (limited to 'main/pllua/9.3-notice-create-index.patch')
-rw-r--r--main/pllua/9.3-notice-create-index.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/main/pllua/9.3-notice-create-index.patch b/main/pllua/9.3-notice-create-index.patch
new file mode 100644
index 000000000..d30b62437
--- /dev/null
+++ b/main/pllua/9.3-notice-create-index.patch
@@ -0,0 +1,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 $$