Skip to content

Commit 9151e1b

Browse files
committed
Add btree_gin contrib module.
Teodor Sigaev and Oleg Bartunov
1 parent 87b8db3 commit 9151e1b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+2781
-3
lines changed

contrib/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $PostgreSQL: pgsql/contrib/Makefile,v 1.86 2009/01/04 22:19:59 tgl Exp $
1+
# $PostgreSQL: pgsql/contrib/Makefile,v 1.87 2009/03/25 23:20:01 tgl Exp $
22

33
subdir = contrib
44
top_builddir = ..
@@ -7,6 +7,7 @@ include $(top_builddir)/src/Makefile.global
77
WANTED_DIRS = \
88
adminpack \
99
auto_explain \
10+
btree_gin \
1011
btree_gist \
1112
chkpass \
1213
citext \

contrib/README

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ auto_explain -
3232
Log EXPLAIN output for long-running queries
3333
by Takahiro Itagaki <[email protected]>
3434

35+
btree_gin -
36+
Support for emulating BTREE indexing in GIN
37+
by Oleg Bartunov <[email protected]> and Teodor Sigaev <[email protected]>
38+
3539
btree_gist -
3640
Support for emulating BTREE indexing in GiST
3741
by Oleg Bartunov <[email protected]> and Teodor Sigaev <[email protected]>

contrib/btree_gin/Makefile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# $PostgreSQL: pgsql/contrib/btree_gin/Makefile,v 1.1 2009/03/25 23:20:01 tgl Exp $
2+
3+
MODULE_big = btree_gin
4+
OBJS = btree_gin.o
5+
6+
DATA_built = btree_gin.sql
7+
DATA = uninstall_btree_gin.sql
8+
REGRESS = install_btree_gin int2 int4 int8 float4 float8 money oid \
9+
timestamp timestamptz time timetz date interval \
10+
macaddr inet cidr text varchar char bytea bit varbit \
11+
numeric
12+
13+
ifdef USE_PGXS
14+
PG_CONFIG = pg_config
15+
PGXS := $(shell $(PG_CONFIG) --pgxs)
16+
include $(PGXS)
17+
else
18+
subdir = contrib/btree_gin
19+
top_builddir = ../..
20+
include $(top_builddir)/src/Makefile.global
21+
include $(top_srcdir)/contrib/contrib-global.mk
22+
endif

0 commit comments

Comments
 (0)