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)
この選択の背後にある理由を知りたいです。