PostgreSQL - Indexing Strategies
Given a table
regions with a polygon column and a GiST index on it, what will the query below return?SELECT * FROM regions WHERE polygon @> '((2,2),(3,3),(4,2),(2,2))'::polygon;