Re: [HACKERS] [PATCH] few fts functions for jsonb
От | Oleg Bartunov |
---|---|
Тема | Re: [HACKERS] [PATCH] few fts functions for jsonb |
Дата | |
Msg-id | CAF4Au4wB3qGsXQs86Yb-n3MiqycvhGRHBqn+SAxH9TGDfCg6Ag@mail.gmail.com обсуждение исходный текст |
Ответ на | [HACKERS] [PATCH] few fts functions for jsonb (Dmitry Dolgov <9erthalion6@gmail.com>) |
Ответы |
Re: [HACKERS] [PATCH] few fts functions for jsonb
|
Список | pgsql-hackers |
The proposed patch looks not very important, but I consider it as an important feature, which Oracle and Microsoft already have, that's why I asked Dmitry to work on this and made it before feature freeze. My comments follows below the post.
On Tue, Feb 28, 2017 at 1:59 PM, Dmitry Dolgov <9erthalion6@gmail.com> wrote:
1. add json support
Hi allI would like to propose patch with a set of new small functions for fts in case ofjsonb data type:* to_tsvector(config, jsonb) - make a tsvector from all string values andelements of jsonb object. To prevent the situation, when tsquery can find aphrase consisting of lexemes from two different values/elements, thisfunction will add an increment to position of each lexeme from every newvalue/element.* ts_headline(config, jsonb, tsquery, options) - generate a headline directlyfrom jsonb objectHere are the examples how they work:```=# select to_tsvector('{"a": "aaa bbb", "b": ["ccc ddd"], "c": {"d": "eee fff"}}'::jsonb);to_tsvector------------------------------------------------- 'aaa':1 'bbb':2 'ccc':4 'ddd':5 'eee':7 'fff':8(1 row)=# select ts_headline('english', '{"a": "aaa bbb", "b": {"c": "ccc ddd"}}'::jsonb, tsquery('bbb & ddd & hhh'), 'StartSel = <, StopSel = >');ts_headline----------------------aaa <bbb> ccc <ddd>(1 row)```
Any comments or suggestions?
1. add json support
2. Its_headline should returns the original json with highlighting. As a first try the proposed ts_headline could be ok, probably need special option.
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
В списке pgsql-hackers по дате отправления: