Re: vectorization is not helping with plural to singular matching

2022-01-03 Thread Tom Lane
PG Doc comments form writes: > SELECT to_tsvector('fat cats ate fat rats') @@ to_tsquery('fat & rat'); > This is giving false, even I tried for various other examples for plural to > singular matching but it fails. The case works for me, but I have =# show default_text_search_config; default

vectorization is not helping with plural to singular matching

2022-01-03 Thread PG Doc comments form
r examples for plural to singular matching but it fails. e.g. select to_tsvector('buildings') @@ plainto_tsquery('building') This simple match is also coming as false, means vectorization is not helping with plural to singular matching. version used: PostgreSQL 13.4 on aar