Detect redundant GROUP BY columns using UNIQUE indexes
[pgsql.git] / src / test / modules / injection_points / Makefile
blob0753a9df58c8ec3f0a2a9283f2bace4c0d7d841f
1 # src/test/modules/injection_points/Makefile
3 MODULE_big = injection_points
4 OBJS = \
5 $(WIN32RES) \
6 injection_points.o \
7 injection_stats.o \
8 injection_stats_fixed.o
9 EXTENSION = injection_points
10 DATA = injection_points--1.0.sql
11 PGFILEDESC = "injection_points - facility for injection points"
13 REGRESS = injection_points reindex_conc
14 REGRESS_OPTS = --dlpath=$(top_builddir)/src/test/regress
16 ISOLATION = basic inplace
18 TAP_TESTS = 1
20 # The injection points are cluster-wide, so disable installcheck
21 NO_INSTALLCHECK = 1
23 export enable_injection_points
25 ifdef USE_PGXS
26 PG_CONFIG = pg_config
27 PGXS := $(shell $(PG_CONFIG) --pgxs)
28 include $(PGXS)
29 else
30 subdir = src/test/modules/injection_points
31 top_builddir = ../../../..
32 include $(top_builddir)/src/Makefile.global
34 # XXX: This test is conditional on enable_injection_points in the
35 # parent Makefile, so we should never get here in the first place if
36 # injection points are not enabled. But the buildfarm 'misc-check'
37 # step doesn't pay attention to the if-condition in the parent
38 # Makefile. To work around that, disable running the test here too.
39 ifeq ($(enable_injection_points),yes)
40 include $(top_srcdir)/contrib/contrib-global.mk
41 else
42 check:
43 @echo "injection points are disabled in this build"
44 endif
46 endif