मेरे पास एक डेटाबेस कॉलम है जिसे auto_review
कॉलम प्रकार कहा जाता है boolean
। ActiveRecord ORM का उपयोग करके बनाए गए उस फ़ील्ड के लिए एक इंडेक्स है।
CREATE INDEX index_table_on_auto_renew ON table USING btree (auto_renew);
जब मैं बूलियन मान के लिए फ़ील्ड को क्वेरी करता हूं, तो पीजी इंडेक्स का उपयोग अपेक्षित रूप से करता है।
EXPLAIN for: SELECT "table".* FROM "table" WHERE "table"."auto_renew" = 'f'
QUERY PLAN
----------------------------------------------------------------------------------------------
Bitmap Heap Scan on table (cost=51.65..826.50 rows=28039 width=186)
Filter: (NOT auto_renew)
-> Bitmap Index Scan on index_domains_on_auto_renew (cost=0.00..44.64 rows=2185 width=0)
Index Cond: (auto_renew = false)
(4 rows)
जब मूल्य होता है NULL
, तो एक अनुक्रमिक स्कैन का उपयोग किया जाता है।
EXPLAIN for: SELECT "table".* FROM "table" WHERE "table"."auto_renew" IS NULL
QUERY PLAN
----------------------------------------------------------------
Seq Scan on table (cost=0.00..1094.01 rows=25854 width=186)
Filter: (auto_renew IS NULL)
(2 rows)
मैं इस पसंद के पीछे का कारण जानने के लिए उत्सुक हूं।