aboutsummaryrefslogtreecommitdiffstats
path: root/main/pllua/9.3-notice-create-index.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-11-04 22:48:38 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-11-04 23:29:17 +0100
commit53b7f4b6d72d97926c97b54d3dad28155ee35e8f (patch)
tree26e11a22acdad4bf192d1001349ffc9a6133c7f4 /main/pllua/9.3-notice-create-index.patch
parentd3d12cb8342af9fb1601e7ded07bd6c90ebe6476 (diff)
downloadaports-53b7f4b6d72d97926c97b54d3dad28155ee35e8f.tar.bz2
aports-53b7f4b6d72d97926c97b54d3dad28155ee35e8f.tar.xz
main/pllua: upgrade to 1.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, 0 insertions, 22 deletions
diff --git a/main/pllua/9.3-notice-create-index.patch b/main/pllua/9.3-notice-create-index.patch
deleted file mode 100644
index d30b62437c..0000000000
--- a/main/pllua/9.3-notice-create-index.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- 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 $$