We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2a3c3b commit e1ddf10Copy full SHA for e1ddf10
Makefile
@@ -26,7 +26,7 @@ REGRESS = security rum rum_validate rum_hash ruminv timestamp \
26
int2 int4 int8 float4 float8 money oid \
27
time timetz date interval \
28
macaddr inet cidr text varchar char bytea bit varbit \
29
- numeric rum_weight expr array
+ numeric rum_weight expr array rum_debug_funcs
30
31
TAP_TESTS = 1
32
@@ -48,6 +48,11 @@ endif
48
$(EXTENSION)--$(EXTVERSION).sql: rum_init.sql
49
cat $^ > $@
50
51
+# rum_debug_funcs tests only for enterprise
52
+ifneq ($(PGPRO_EDITION), enterprise)
53
+ REGRESS := $(filter-out rum_debug_funcs, $(REGRESS))
54
+endif
55
+
56
#
57
# On versions 12 and 13 isolation tests cannot be run using pgxs.
58
# Override installcheck target to avoid the error. This is just a
0 commit comments