这是一个错误还是一个功能?我已经在tsvector属性上创建了一个索引(不使用字典)。
查询
SELECT title
FROM table
WHERE title_tsv @@ to_tsquery('basic') and
title_tsv @@ to_tsquery('inst:*')
返回“基本本能”。但是,查询
SELECT title
FROM table
WHERE title_tsv @@ to_tsquery('basic') and
title_tsv @@ to_tsquery('in:*')
根本不会返回任何记录。我不明白为什么第二个(更通用的查询)返回的结果比第一个查询少?
再见
答案 0 :(得分:4)
steve@steve@[local] =# select to_tsquery('in:*');
NOTICE: text-search query contains only stop words or doesn't contain lexemes, ignored
因此可能与该查询匹配总是返回false?
也许您想要对“基本”和“基本”形式进行单一查询in:*'?