PostgreSQL - Full-Text Search
Given the table
documents with a column content_tsv of type tsvector, what will this query return?SELECT id FROM documents WHERE content_tsv @@ to_tsquery('cat & dog');