Re: Prefix support for synonym dictionary

Поиск
Список
Период
Сортировка
От Teodor Sigaev
Тема Re: Prefix support for synonym dictionary
Дата
Msg-id 4A7AFDB9.4050905@sigaev.ru
обсуждение исходный текст
Ответ на Re: Prefix support for synonym dictionary  (Jeff Davis <pgsql@j-davis.com>)
Ответы Re: Prefix support for synonym dictionary  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
> 1. The docs should be clarified a little. For instance, it should have a
> link back to the definition of a prefix search (12.3.2). I included my
> doc suggestions as an attachment.
Thank you, merged

> 2. dsynonym_init() uses findwrd() in a slightly confusing (and perhaps
> fragile) way. After calling findwrd(), the "end" pointer is pointing at
> either the end of the string, or the *; depending on whether the string
> ends in * and whether flags is NULL. I only mention this because I had
> to take a more careful look to see what was happening. Perhaps add a
> comment to make it more clear?
Add comments:
/*
  * Finds the next whitespace-delimited word within the 'in' string.
  * Returns a pointer to the first character of the word, and a pointer
  * to the next byte after the last character in the word (in *end).
  * Character '*' at the end of word will not be threated as word
  * charater if flags is not null.
  */
static char *
findwrd(char *in, char **end, uint16 *flags)



> 3. The patch looks for the special byte '*'. I think that's fine,
> because we depend on the files being in UTF-8 encoding, where it's the
> same byte. However, I thought it was worth mentioning in case we want to
> support other encodings for text search files later.

tsearch_readline() converts file's UTF8 encoding into server encoding. pgsql
supports only encoding which are a superset of ASCII. So it's safe to use
asterisk with any encodings

--
Teodor Sigaev                                   E-mail: teodor@sigaev.ru
                                                    WWW: http://www.sigaev.ru/

Вложения

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

Предыдущее
От: David Fetter
Дата:
Сообщение: Re: dblink bulk operations
Следующее
От: Robert Haas
Дата:
Сообщение: Re: Prefix support for synonym dictionary