You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently indexing with rum fails, if the tsquery column or expression contains phrases:
ERROR: Indexing of phrase tsqueries isn't supported yet
It would be very useful if this feature was supported, since it would allow to quickly check if a phrase is contained in some text (for example to filter text containing blacklisted phrases).
The text was updated successfully, but these errors were encountered:
On Thu, Jul 19, 2018 at 5:43 PM, Felix Bünemann ***@***.***> wrote:
Currently indexing with rum fails, if the tsquery column or expression
contains phrases:
ERROR: Indexing of phrase tsqueries isn't supported yet
It would be very useful if this feature was supported, since it would
allow to quickly check if a phrase is contained in some text (for example
to filter text containing blacklisted phrases).
please, provide us more information. Exact create index would be enough
The easiest thing, which is possible to do here, is to support phrase operator in the same way as AND operator. That would require to check actual phrase matching using heap tuple during recheck stage. But it appears that our format of additional info didn't have reserved area in order to store whether recheck is needed. I'll investigate what could be done in this area.
Currently indexing with rum fails, if the tsquery column or expression contains phrases:
It would be very useful if this feature was supported, since it would allow to quickly check if a phrase is contained in some text (for example to filter text containing blacklisted phrases).
The text was updated successfully, but these errors were encountered: