我有一个称为auto_review
列类型为的数据库列boolean
。使用ActiveRecord ORM创建该字段的索引。
CREATE INDEX index_table_on_auto_renew ON table USING btree (auto_renew);
当我在字段中查询布尔值时,PG会按预期使用索引。
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)
我很好奇知道这种选择的原因。