Use one of not-null unique keys to identify rows when the target table doesn't
have a primary key. Some of users want to use not-null unique keys rather than primary keys because postgres doesn't support REINDEX PRIMARY KEY CONCURRENTLY. - Support 9.1dev. - Improve Makefile to use PGXS automatically.
This commit is contained in:
16
bin/Makefile
16
bin/Makefile
@ -15,13 +15,21 @@ PG_CPPFLAGS = -I$(libpq_srcdir)
|
||||
endif
|
||||
PG_LIBS = $(libpq)
|
||||
|
||||
ifndef USE_PGXS
|
||||
top_builddir = ../../..
|
||||
makefile_global = $(top_builddir)/src/Makefile.global
|
||||
ifeq "$(wildcard $(makefile_global))" ""
|
||||
USE_PGXS = 1 # use pgxs if not in contrib directory
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef USE_PGXS
|
||||
PGXS := $(shell pg_config --pgxs)
|
||||
PG_CONFIG = pg_config
|
||||
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
||||
include $(PGXS)
|
||||
else
|
||||
subdir = contrib/pg_reorg
|
||||
top_builddir = ../../..
|
||||
include $(top_builddir)/src/Makefile.global
|
||||
subdir = contrib/$(MODULE_big)
|
||||
include $(makefile_global)
|
||||
include $(top_srcdir)/contrib/contrib-global.mk
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user