File tree 1 file changed +9
-4
lines changed
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)
15
15
PGFILEDESC = "RUM index access method"
16
16
INCLUDES = src/rum.h src/rumsort.h
17
17
18
+ LDFLAGS_SL += $(filter -lm, $(LIBS ) )
19
+
18
20
REGRESS = rum rum_hash ruminv timestamp orderby orderby_hash altorder \
19
21
altorder_hash limits \
20
22
int2 int4 int8 float4 float8 money oid \
21
23
time timetz date interval \
22
24
macaddr inet cidr text varchar char bytea bit varbit \
23
- numeric \
24
- array
25
-
26
- LDFLAGS_SL += $(filter -lm, $(LIBS ) )
25
+ numeric
27
26
28
27
ifdef USE_PGXS
29
28
PG_CONFIG = pg_config
@@ -36,6 +35,12 @@ include $(top_builddir)/src/Makefile.global
36
35
include $(top_srcdir ) /contrib/contrib-global.mk
37
36
endif
38
37
38
+ ifeq ($(MAJORVERSION ) , 9.6)
39
+ # arrays are not supported on 9.6
40
+ else
41
+ REGRESS += array
42
+ endif
43
+
39
44
wal-check : temp-install
40
45
$(prove_check )
41
46
You can’t perform that action at this time.
0 commit comments