Install plpgsql on test databases 8.3 and 8.4

Required by triggers tests
This commit is contained in:
Daniele Varrazzo 2013-04-18 01:32:05 +01:00
parent a2138b6d7d
commit 54ba3c19cd
3 changed files with 9 additions and 2 deletions

View File

@ -22,9 +22,14 @@ PROGRAM = pg_repack
#
ifeq ($(shell echo $$(($(INTVERSION) >= 901))),1)
REGRESS = init-extension
REGRESS := init-extension
else
REGRESS = init-legacy
REGRESS := init-legacy
endif
# plpgsql not available by default on pg < 9.0
ifeq ($(shell echo $$(($(INTVERSION) < 900))),1)
REGRESS += plpgsql
endif
REGRESS += repack tablespace

1
bin/expected/plpgsql.out Normal file
View File

@ -0,0 +1 @@
CREATE LANGUAGE plpgsql;

1
bin/sql/plpgsql.sql Normal file
View File

@ -0,0 +1 @@
CREATE LANGUAGE plpgsql;