Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b577056

Browse files
committed
txtidx datatype for full text indexing with GiST.
From Oleg Bartunov and Teodor Sigaev.
1 parent c24216b commit b577056

27 files changed

+24874
-5
lines changed

contrib/Makefile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.29 2001/10/01 01:52:38 ishii Exp $
1+
# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.30 2001/10/12 23:19:09 tgl Exp $
22

33
subdir = contrib
44
top_builddir = ..
@@ -34,9 +34,14 @@ WANTED_DIRS = \
3434
spi \
3535
string \
3636
tips \
37+
tsearch \
3738
userlock \
3839
vacuumlo
3940

41+
ifeq ($(with_java),yes)
42+
WANTED_DIRS += retep
43+
endif
44+
4045
# Missing:
4146
# ipc_check \ (does not have a makefile)
4247
# mSQL-interface \ (requires msql installed)
@@ -47,10 +52,6 @@ WANTED_DIRS = \
4752
# tools \ (does not have a makefile)
4853
# xml \ (non-standard makefile)
4954

50-
ifeq ($(with_java),yes)
51-
WANTED_DIRS += retep
52-
endif
53-
5455

5556
all install installdirs uninstall clean distclean maintainer-clean check installcheck:
5657
@for dir in $(WANTED_DIRS); do \

contrib/README

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,11 @@ tools -
175175
Assorted developer tools
176176
by Massimo Dal Zotto <dz@cs.unitn.it>
177177

178+
tsearch -
179+
Full-text-index support using GiST
180+
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov
181+
<oleg@sai.msu.su>.
182+
178183
userlock -
179184
User locks
180185
by Massimo Dal Zotto <dz@cs.unitn.it>

contrib/tsearch/Makefile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# $Header: /cvsroot/pgsql/contrib/tsearch/Attic/Makefile,v 1.1 2001/10/12 23:19:09 tgl Exp $
2+
3+
subdir = contrib/tsearch
4+
top_builddir = ../..
5+
include $(top_builddir)/src/Makefile.global
6+
7+
MODULE_big = tsearch
8+
OBJS = parser.o crc32.o morph.o txtidx.o query.o gistidx.o rewrite.o
9+
10+
DATA_built = tsearch.sql
11+
DOCS = README.tsearch
12+
REGRESS = tsearch
13+
14+
parser.c: parser.l
15+
ifdef FLEX
16+
$(FLEX) $(FLEXFLAGS) -8 -Ptsearch_yy -o'$@' $<
17+
else
18+
@$(missing) flex $< $@
19+
endif
20+
21+
EXTRA_CLEAN = parser.c
22+
23+
include $(top_srcdir)/contrib/contrib-global.mk
24+
# DO NOT DELETE

0 commit comments

Comments
 (0)