1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Temporarily modify tsearch regression tests to suppress notice that comes

out at erratic times, because it is creating a totally unacceptable level
of noise in our buildfarm results.  This patch can be reverted when and if
the code is fixed to not issue notices during cache reload events.
This commit is contained in:
Tom Lane
2007-09-23 15:58:58 +00:00
parent 7125687511
commit 33b9c8bd68
2 changed files with 4 additions and 7 deletions

View File

@ -14,5 +14,4 @@ two : *2
supernovae stars : *sn supernovae stars : *sn
supernovae : *sn supernovae : *sn
booking tickets : order invitation cards booking tickets : order invitation cards
booking the tickets : order invitation Cards # booking the tickets : order invitation Cards

View File

@ -216,9 +216,7 @@ CREATE TEXT SEARCH DICTIONARY thesaurus (
DictFile=thesaurus_sample, DictFile=thesaurus_sample,
Dictionary=english_stem Dictionary=english_stem
); );
NOTICE: thesaurus word-sample "the" is recognized as stop-word, assign any stop-word (rule 8)
SELECT ts_lexize('thesaurus', 'one'); SELECT ts_lexize('thesaurus', 'one');
NOTICE: thesaurus word-sample "the" is recognized as stop-word, assign any stop-word (rule 8)
ts_lexize ts_lexize
----------- -----------
{1} {1}
@ -314,7 +312,7 @@ SELECT to_tsvector('thesaurus_tst', 'Supernovae star is very new star and usuall
SELECT to_tsvector('thesaurus_tst', 'Booking tickets is looking like a booking a tickets'); SELECT to_tsvector('thesaurus_tst', 'Booking tickets is looking like a booking a tickets');
to_tsvector to_tsvector
------------------------------------------------------- ---------------------------------------------------------------------
'card':3,10 'like':6 'look':5 'invit':2,9 'order':1,8 'book':8 'card':3 'like':6 'look':5 'invit':2 'order':1 'ticket':10
(1 row) (1 row)