Re: Proposal: syntax of operation with tsearch's configuration

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Proposal: syntax of operation with tsearch's configuration
Дата
Msg-id 19776.1163796815@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Proposal: syntax of operation with tsearch's configuration  (Alvaro Herrera <alvherre@commandprompt.com>)
Ответы Re: Proposal: syntax of operation with tsearch's configuration  (Martijn van Oosterhout <kleptog@svana.org>)
Список pgsql-hackers
Alvaro Herrera <alvherre@commandprompt.com> writes:
> Tom Lane wrote:
>> It may be worth doing anyway --- certainly CREATE OPERATOR CLASS was a
>> huge improvement over the previous ways of doing it --- but don't
>> underestimate the size of what we're talking about.

> Hmm, actually the tsearch2 directory contains 16500 lines of code
> (generated using David A. Wheeler's 'SLOCCount'), so I didn't doubt that
> it's a big piece of code as a whole -- but I thought what was being
> discussed was the size of the grammar changes, which is why I mentioned
> the "a couple dozen" figure.

No, what I was on about was the cost of inventing custom-SQL-statement
manipulation of the catalog entries that drive tsearch2.  The analogy to
operator classes is fairly exact, because before 7.3 you had to
manipulate those using direct insertions of catalog entries.  The
manipulation commands are just about independent of the actual use of
the catalog entries --- my count of "support" didn't include any of the
planner or index AM code that actually uses operator classes, and in the
same way the existing tsearch2 code doesn't have any particular
relationship to this new code that'd have to be written to support the 
manipulation commands.

> Having the supporting code in core does not make much of a difference
> otherwise from having it in contrib, does it?

Given the nonextensibility of gram.y and keywords.c, it has to be in
core to even think about having special syntax :-(
        regards, tom lane


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

Предыдущее
От: Oleg Bartunov
Дата:
Сообщение: Re: Proposal: syntax of operation with tsearch's configuration
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [GENERAL] Shutting down a warm standby database in 8.2beta3