Skip to content

Commit 7731322

Browse files
committed
do not run array tests on PG 9.6
1 parent 1084866 commit 7731322

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Makefile

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ DATA_built = rum--$(EXTVERSION).sql $(DATA_updates)
1515
PGFILEDESC = "RUM index access method"
1616
INCLUDES = src/rum.h src/rumsort.h
1717

18+
LDFLAGS_SL += $(filter -lm, $(LIBS))
19+
1820
REGRESS = rum rum_hash ruminv timestamp orderby orderby_hash altorder \
1921
altorder_hash limits \
2022
int2 int4 int8 float4 float8 money oid \
2123
time timetz date interval \
2224
macaddr inet cidr text varchar char bytea bit varbit \
23-
numeric \
24-
array
25-
26-
LDFLAGS_SL += $(filter -lm, $(LIBS))
25+
numeric
2726

2827
ifdef USE_PGXS
2928
PG_CONFIG = pg_config
@@ -36,6 +35,12 @@ include $(top_builddir)/src/Makefile.global
3635
include $(top_srcdir)/contrib/contrib-global.mk
3736
endif
3837

38+
ifeq ($(MAJORVERSION), 9.6)
39+
# arrays are not supported on 9.6
40+
else
41+
REGRESS += array
42+
endif
43+
3944
wal-check: temp-install
4045
$(prove_check)
4146

0 commit comments

Comments
 (0)