Commit 99c8581f authored by Bruce Momjian's avatar Bruce Momjian

> > 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
parent b7527885
...@@ -20,7 +20,6 @@ Changes ...@@ -20,7 +20,6 @@ Changes
Fix pgaccess kanji-coversion key binding (Tatsuo) Fix pgaccess kanji-coversion key binding (Tatsuo)
Optimizer improvements (Tom) Optimizer improvements (Tom)
cash I/O improvements (Tom) cash I/O improvements (Tom)
contrib/btree_gist improvements (Teodor Sigaev)
New Russian FAQ New Russian FAQ
Compile fix for missing AuthBlockSig (Heiko) Compile fix for missing AuthBlockSig (Heiko)
Additional time zones and time zone fixes (Thomas) Additional time zones and time zone fixes (Thomas)
...@@ -29,7 +28,9 @@ Changes ...@@ -29,7 +28,9 @@ Changes
Allow COPY FROM to use 8-bit DELIMITERS (Tatsuo) Allow COPY FROM to use 8-bit DELIMITERS (Tatsuo)
Fix bug in extract/date_part for milliseconds/microseconds (Tatsuo) Fix bug in extract/date_part for milliseconds/microseconds (Tatsuo)
Improve handling of multiple UNIONs with different lengths (Tom) 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) Fix for array subscripts handling (Tom)
......
...@@ -4,6 +4,15 @@ a searchable data type (textual) with indexed access. ...@@ -4,6 +4,15 @@ a searchable data type (textual) with indexed access.
All work was done by Teodor Sigaev (teodor@stack.net) and Oleg Bartunov All work was done by Teodor Sigaev (teodor@stack.net) and Oleg Bartunov
(oleg@sai.msu.su). (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: IMPORTANT NOTICE:
This is a first step of our work on integration of OpenFTS This is a first step of our work on integration of OpenFTS
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment