PostgreSQL - Indexing Strategies
Given the table
users with a JSONB column preferences and a GIN index on it, what will this query return?SELECT * FROM users WHERE preferences @> '{"theme": "dark"}';