Empty dictionary file when creating text search dictionary

Поиск
Список
Период
Сортировка
От Robert Gravsjö
Тема Empty dictionary file when creating text search dictionary
Дата
Msg-id 4B13EB5E.2070507@blogg.se
обсуждение исходный текст
Ответы Re: Empty dictionary file when creating text search dictionary
Список pgsql-hackers
Found this a couple of weeks back and just re-tested against head:

CREATE TEXT SEARCH DICTIONARY with an empty thesaurus file will crasch 
the backend.

To reproduce:
$ echo "" > $(pg_config --sharedir)/tsearch_data/thesaurus_empty.ths

Then use this thesaurus to create a text search dictionary:
CREATE TEXT SEARCH DICTIONARY thesaurus_astro (    TEMPLATE = thesaurus,    DictFile = thesaurus_empty,    Dictionary =
english_stem
);

It doesn't matter if the file is compleatly empty or just have comments. 
The result is the same.
Add a word:
$ echo "foo: bar" >> $(pg_config 
--sharedir)/tsearch_data/thesaurus_empty.ths

Creating the dictionary will now work.

Sorry  I have no patch to attach.

Regards,
roppert

PS. I happend to send this mail from a wrong, non-subscribed, address 
earlier so if it turns up duplicated I apologize.


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Dave Cramer
Дата:
Сообщение: Re: OpenSSL key renegotiation with patched openssl
Следующее
От: Tim Bunce
Дата:
Сообщение: Re: Initial refactoring of plperl.c [PATCH]