File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,14 @@ DATA_built = rum--$(EXTVERSION).sql $(DATA_updates)
1515PGFILEDESC = "RUM index access method"
1616INCLUDES = src/rum.h src/rumsort.h
1717
18+ LDFLAGS_SL += $(filter -lm, $(LIBS ) )
19+
1820REGRESS = 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
2827ifdef USE_PGXS
2928PG_CONFIG = pg_config
@@ -36,6 +35,12 @@ include $(top_builddir)/src/Makefile.global
3635include $(top_srcdir ) /contrib/contrib-global.mk
3736endif
3837
38+ ifeq ($(MAJORVERSION ) , 9.6)
39+ # arrays are not supported on 9.6
40+ else
41+ REGRESS += array
42+ endif
43+
3944wal-check : temp-install
4045 $(prove_check )
4146
You can’t perform that action at this time.
0 commit comments