PostgreSQL - Full-Text Search
Given a table
articles with a GIN index on to_tsvector('english', body), what will this query return?SELECT * FROM articles WHERE to_tsvector('english', body) @@ to_tsquery('english', 'database & index');