Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitaad4196

Browse files
committed
List pg_trgm in contrib Makefile and README.
1 parente590cee commitaad4196

File tree

2 files changed

+22
-15
lines changed

2 files changed

+22
-15
lines changed

‎contrib/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $PostgreSQL: pgsql/contrib/Makefile,v 1.48 2004/03/05 05:15:16 momjian Exp $
1+
# $PostgreSQL: pgsql/contrib/Makefile,v 1.49 2004/06/01 05:15:47 tgl Exp $
22

33
subdir = contrib
44
top_builddir = ..
@@ -27,6 +27,7 @@ WANTED_DIRS = \
2727
pg_autovacuum\
2828
pg_dumplo\
2929
pg_logger\
30+
pg_trgm\
3031
pgbench\
3132
pgcrypto\
3233
pgstattuple\
@@ -43,8 +44,8 @@ WANTED_DIRS = \
4344
vacuumlo
4445

4546
# Missing:
46-
#array\ (removed all but the README)
4747
#adddepend\ (does not have a makefile)
48+
#array\ (removed all but the README)
4849
#ipc_check\ (does not have a makefile)
4950
#mSQL-interface\ (requires msql installed)
5051
#mac\ (does not have a makefile)

‎contrib/README

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Each subdirectory contains a README file with information about the
1111
module. Most items can be built with `gmake all' and installed with
1212
`gmake install' in the usual fashion, after you have run the `configure'
1313
script in the top-level directory. Some directories supply new
14-
user-defined functions, operators, or types.Afteryou have installed
15-
the files you need to register the new entities in the database system
16-
by running the commands in the supplied .sql file. For example,
14+
user-defined functions, operators, or types.In these cases, afteryou have
15+
installedthe files you need to register the new entities in the database
16+
systemby running the commands in the supplied .sql file. For example,
1717

1818
$ psql -d dbname -f module.sql
1919

@@ -34,7 +34,7 @@ array -
3434

3535
btree_gist -
3636
Support for emulating BTREE indexing in GiST
37-
by Oleg Bartunov <oleg@sai.msu.su> and Teodor Sigaev <teodor@stack.net>
37+
by Oleg Bartunov <oleg@sai.msu.su> and Teodor Sigaev <teodor@sigaev.ru>
3838

3939
chkpass -
4040
An auto-encrypted password datatype
@@ -85,7 +85,7 @@ intagg -
8585

8686
intarray -
8787
Index support for arrays of int4, using GiST
88-
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov <oleg@sai.msu.su>
88+
by Teodor Sigaev <teodor@sigaev.ru> and Oleg Bartunov <oleg@sai.msu.su>
8989

9090
ipc_check -
9191
Simple test script to help in configuring IPC.
@@ -101,7 +101,7 @@ lo -
101101

102102
ltree -
103103
Tree-like data structures
104-
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov <oleg@sai.msu.su>
104+
by Teodor Sigaev <teodor@sigaev.ru> and Oleg Bartunov <oleg@sai.msu.su>
105105

106106
mSQL-interface -
107107
mSQL API translation library
@@ -144,6 +144,11 @@ pg_logger -
144144
Stdin-to-syslog gateway for PostgreSQL
145145
by Nathan Myers <ncm@nospam.cantrip.org>
146146

147+
pg_trgm -
148+
Functions for determining the similarity of text based on trigram
149+
matching.
150+
by Oleg Bartunov <oleg@sai.msu.su> and Teodor Sigaev <teodor@sigaev.ru>
151+
147152
pg_upgrade -
148153
Upgrade from previous PostgreSQL version without pg_dump/reload
149154
by Bruce Momjian <pgman@candle.pha.pa.us>
@@ -156,21 +161,22 @@ pgcrypto -
156161
Cryptographic functions
157162
by Marko Kreen <marko@l-t.ee>
158163

164+
pgstattuple -
165+
A function to return statistics about "dead" tuples and free
166+
space within a table
167+
by Tatsuo Ishii <t-ishii@sra.co.jp>
168+
159169
reindexdb -
160170
Reindexes a database
161171
by Shaun Thomas <sthomas@townnews.com>
162172

163-
pgstattuple -
164-
A function returns the percentage of "dead" tuples in a table
165-
by Tatsuo Ishii <t-ishii@sra.co.jp>
166-
167173
rserv -
168174
Replication server
169175
by Vadim B. Mikheev <vadim4o@email.com>
170176

171177
rtree_gist -
172178
Support for emulating RTREE indexing in GiST
173-
by Oleg Bartunov <oleg@sai.msu.su> and Teodor Sigaev <teodor@stack.net>
179+
by Oleg Bartunov <oleg@sai.msu.su> and Teodor Sigaev <teodor@sigaev.ru>
174180

175181
seg -
176182
Confidence-interval datatype (GiST indexing example)
@@ -200,12 +206,12 @@ tools -
200206

201207
tsearch -
202208
Full-text-index support using GiST (obsolete version)
203-
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov
209+
by Teodor Sigaev <teodor@sigaev.ru> and Oleg Bartunov
204210
<oleg@sai.msu.su>.
205211

206212
tsearch2 -
207213
Full-text-index support using GiST
208-
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov
214+
by Teodor Sigaev <teodor@sigaev.ru> and Oleg Bartunov
209215
<oleg@sai.msu.su>.
210216

211217
userlock -

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp