summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorBruce Momjian2002-03-19 14:14:44 +0000
committerBruce Momjian2002-03-19 14:14:44 +0000
commit99c8581f5a22fb5c8224b1b2cba1071ec680ef43 (patch)
tree3699188a6f2ac63eb3f84612f7c03e8501fb48f6 /contrib
parentb752788510696c9ac5e9e43611a8b6a0eaacca77 (diff)
> > 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
Diffstat (limited to 'contrib')
-rw-r--r--contrib/tsearch/README.tsearch9
1 files changed, 9 insertions, 0 deletions
diff --git a/contrib/tsearch/README.tsearch b/contrib/tsearch/README.tsearch
index c63ae91edd..36ab97face 100644
--- a/contrib/tsearch/README.tsearch
+++ b/contrib/tsearch/README.tsearch
@@ -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
(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