diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-19 14:15:55 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-19 14:15:55 +0000 |
commit | 14d542bc67056b4a2592b20bd966175649e841ec (patch) | |
tree | f0980dd8b94795895a990825326d35d502d33d16 | |
parent | 99c8581f5a22fb5c8224b1b2cba1071ec680ef43 (diff) | |
download | postgresql-14d542bc67056b4a2592b20bd966175649e841ec.tar.gz postgresql-14d542bc67056b4a2592b20bd966175649e841ec.zip |
> > Users of contrib/tsearch needs after upgrading of module (compiling, installing)
> > to perform sql command:
> > update pg_amop set amopreqcheck = true where amopclaid =
> > (select oid from pg_opclass where opcname = 'gist_txtidx_ops');
>
> Oleg, sorry, I don't understand where this should appear. In the README
> file, and if so, where? Is this something only for people upgrading
> from 7.2?
Sorry Bruce, I was unclear. I have attached patch to Readme.tsearch
Also, It'd be worth to mention in Changes to point users of tsearch
about importang upgrade notices.
Oleg Bartunov
-rw-r--r-- | contrib/tsearch/README.tsearch | 9 | ||||
-rw-r--r-- | doc/src/sgml/release.sgml | 7 |
2 files changed, 4 insertions, 12 deletions
diff --git a/contrib/tsearch/README.tsearch b/contrib/tsearch/README.tsearch index 36ab97face4..c63ae91edd0 100644 --- a/contrib/tsearch/README.tsearch +++ b/contrib/tsearch/README.tsearch @@ -4,15 +4,6 @@ a searchable data type (textual) with indexed access. All work was done by Teodor Sigaev (teodor@stack.net) and Oleg Bartunov (oleg@sai.msu.su). -CHANGES: - - To upgrade from 7.2 to 7.2.1 one needs to perform following sql - (after compiling and installing contrib/tsearch): - - update pg_amop set amopreqcheck = true where amopclaid = - (select oid from pg_opclass where opcname = 'gist_txtidx_ops'); - - IMPORTANT NOTICE: This is a first step of our work on integration of OpenFTS diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index bb2b36c572d..f400b21fb2c 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.122 2002/03/19 00:12:09 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.123 2002/03/19 14:14:44 momjian Exp $ --> <appendix id="release"> @@ -36,7 +36,6 @@ Ensure that sequence counters do not go backwards after a crash (Tom) Fix pgaccess kanji-coversion key binding (Tatsuo) Optimizer improvements (Tom) cash I/O improvements (Tom) -contrib/btree_gist improvements (Teodor Sigaev) New Russian FAQ Compile fix for missing AuthBlockSig (Heiko) Additional time zones and time zone fixes (Thomas) @@ -45,7 +44,9 @@ Return proper OID on command completion even with ON INSERT rules (Tom) Allow COPY FROM to use 8-bit DELIMITERS (Tatsuo) Fix bug in extract/date_part for milliseconds/microseconds (Tatsuo) Improve handling of multiple UNIONs with different lengths (Tom) -contrib/tsearch dictionary improvements (Thomas T. Thai, Teodor Sigaev) +contrib/btree_gist improvements (Teodor Sigaev) +contrib/tsearch dictionary improvements, see README.tsearch for + an additional installation step (Thomas T. Thai, Teodor Sigaev) Fix for array subscripts handling (Tom) </programlisting> </para> |