Guard against zero vardata.rel->tuples in estimate_hash_bucketsize().
[pgsql.git] / contrib / btree_gin / Makefile
blob0492091599ef49c482e660bbd92d606c26144755
1 # contrib/btree_gin/Makefile
3 MODULE_big = btree_gin
4 OBJS = btree_gin.o $(WIN32RES)
6 EXTENSION = btree_gin
7 DATA = btree_gin--1.0.sql btree_gin--unpackaged--1.0.sql
8 PGFILEDESC = "btree_gin - B-tree equivalent GIN operator classes"
10 REGRESS = install_btree_gin int2 int4 int8 float4 float8 money oid \
11 timestamp timestamptz time timetz date interval \
12 macaddr inet cidr text varchar char bytea bit varbit \
13 numeric
15 ifdef USE_PGXS
16 PG_CONFIG = pg_config
17 PGXS := $(shell $(PG_CONFIG) --pgxs)
18 include $(PGXS)
19 else
20 subdir = contrib/btree_gin
21 top_builddir = ../..
22 include $(top_builddir)/src/Makefile.global
23 include $(top_srcdir)/contrib/contrib-global.mk
24 endif