is this a bug or a feature? I've created an index on a tsvector attribute (without using a dictionary).
The query
SELECT title
FROM table
WHERE title_tsv @@ to_tsquery('basic') and
title_tsv @@ to_tsquery('inst:*')
returns "Basic Instinct". However, the query
SELECT title
FROM table
WHERE title_tsv @@ to_tsquery('basic') and
title_tsv @@ to_tsquery('in:*')
returns no records at all. I don't see why the second (more generic query) returns less results then the first query?
Bye