PostgreSQL - JSON and JSONB
Given a table
products with a JSONB column attributes and a GIN index on it, what will this query return?SELECT * FROM products WHERE attributes @> '{"color": "red"}';