Dropped sql file for non-extension build

This commit is contained in:
Daniele Varrazzo 2017-03-29 03:35:20 +01:00
parent 46dd16a6ed
commit 2af90dced1
2 changed files with 0 additions and 15 deletions

View File

@ -25,13 +25,7 @@ REPACK_VERSION = $(shell grep '"version":' ../META.json | head -1 \
PG_CPPFLAGS = -DREPACK_VERSION=$(REPACK_VERSION)
# Support CREATE EXTENSION for PG >= 9.1 and a simple sql script for PG < 9.1
ifeq ($(shell echo $$(($(INTVERSION) >= 901))),1)
DATA_built = pg_repack--$(REPACK_VERSION).sql pg_repack.control
else
DATA_built = pg_repack.sql
DATA = uninstall_pg_repack.sql
endif
USE_PGXS = 1
PGXS := $(shell $(PG_CONFIG) --pgxs)

View File

@ -1,9 +0,0 @@
/*
* pg_repack: lib/uninstall_repack.sql
*
* Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
* Portions Copyright (c) 2011, Itagaki Takahiro
* Portions Copyright (c) 2012-2015, The Reorg Development Team
*/
DROP SCHEMA IF EXISTS repack CASCADE;