1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

In case Florian and I don't finish his changes to this contrib before

beta, at least get this stuff in.

ftipatch.txt - Updates to docs and scripts.  Run in the fulltextindexdir
WARNING - Add to fulltextindex dir
uninstall.sql - Add to fulltextindex dir
This commit is contained in:
Bruce Momjian
2002-09-02 06:27:04 +00:00
parent 1f8a63eb08
commit f68fe6716c
5 changed files with 31 additions and 5 deletions

View File

@ -25,7 +25,7 @@
* '/usr/local/pgsql/lib/contrib/fti.so' language 'C';
*
* -- Create the FTI table
* create table product_fti (string varchar(255), id oid);
* create table product_fti (string varchar(255), id oid) without oids;
*
* -- Create an index to assist string matches
* create index product_fti_string_idx on product_fti (string);