Re: 8.4b2 tsearch2 strange error - Mailing list pgsql-hackers

From Kevin Grittner
Subject Re: 8.4b2 tsearch2 strange error
Date
Msg-id 4A27BA450200002500027514@gw.wicourts.gov
Whole thread Raw
In response to Re: 8.4b2 tsearch2 strange error  (Tatsuo Ishii <ishii@postgresql.org>)
Responses Re: 8.4b2 tsearch2 strange error
List pgsql-hackers
Tatsuo Ishii <ishii@postgresql.org> wrote: 
> http://sylpheed.sraoss.jp/tmp/searcherdb84.tar.bz2
Using that on my kubuntu machine with no configure options except
prefix:
hiro@kgrittn-desktop:~$ /usr/local/pgsql-8.4beta2/bin/psql -U hiro
sylph
psql (8.4beta2)
Type "help" for help.

sylph=# SELECT msg_sid, hdr_from, hdr_to, hdr_subject, msg_date,
folder_id, msgnum FROM msginfo LEFT JOIN msg_folderinfo USING (msg_sid)
WHERE plainto_tsquery(E'a') @@ body_index;
NOTICE:  text-search query contains only stop words or doesn't contain
lexemes, ignored
ERROR:  unrecognized operator: -26
sylph=# SELECT msg_sid, hdr_from, hdr_to, hdr_subject, msg_date,
folder_id, msgnum FROM msginfo LEFT JOIN msg_folderinfo USING (msg_sid)
WHERE plainto_tsquery(E'a') @@ body_index;
NOTICE:  text-search query contains only stop words or doesn't contain
lexemes, ignored
ERROR:  unrecognized operator: -26
sylph=# SELECT msg_sid, hdr_from, hdr_to, hdr_subject, msg_date,
folder_id, msgnum FROM msginfo LEFT JOIN msg_folderinfo USING (msg_sid)
WHERE plainto_tsquery(E'tsearch') @@ body_index;
ERROR:  tuple offset out of range: 609
sylph=# SELECT msg_sid, hdr_from, hdr_to, hdr_subject, msg_date,
folder_id, msgnum FROM msginfo LEFT JOIN msg_folderinfo USING (msg_sid)
WHERE plainto_tsquery(E'tsearch') @@ body_index;
ERROR:  tuple offset out of range: 609
Given that I can replicate this, is there some useful next step?
-Kevin


pgsql-hackers by date:

Previous
From: Andrew Dunstan
Date:
Subject: Re: [COMMITTERS] pgsql: Initialise perl library as documented in perl API.
Next
From: Tom Lane
Date:
Subject: Re: [COMMITTERS] pgsql: Initialise perl library as documented in perl API.