PostgreSQL - Full-Text Search
Given the table
documents with a GIN index on to_tsvector('english', text), what will the query below return?SELECT id FROM documents WHERE to_tsvector('english', text) @@ to_tsquery('quick & fox');