Install plpgsql on test databases 8.3 and 8.4
Required by triggers tests
This commit is contained in:
parent
a2138b6d7d
commit
54ba3c19cd
@ -22,9 +22,14 @@ PROGRAM = pg_repack
|
|||||||
#
|
#
|
||||||
|
|
||||||
ifeq ($(shell echo $$(($(INTVERSION) >= 901))),1)
|
ifeq ($(shell echo $$(($(INTVERSION) >= 901))),1)
|
||||||
REGRESS = init-extension
|
REGRESS := init-extension
|
||||||
else
|
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
|
endif
|
||||||
|
|
||||||
REGRESS += repack tablespace
|
REGRESS += repack tablespace
|
||||||
|
1
bin/expected/plpgsql.out
Normal file
1
bin/expected/plpgsql.out
Normal file
@ -0,0 +1 @@
|
|||||||
|
CREATE LANGUAGE plpgsql;
|
1
bin/sql/plpgsql.sql
Normal file
1
bin/sql/plpgsql.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
CREATE LANGUAGE plpgsql;
|
Loading…
x
Reference in New Issue
Block a user