Re: Index on a NULL-value

From: Tobias Brox <tobias(at)nordicbet(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: Index on a NULL-value
Date: 2005-05-31 03:21:20
Message-ID: 20050531032119.GH26100@tobias.exoweb.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

[Tobias Brox - Tue at 11:02:07AM +0800]
> test=# explain select * from mock where b is NULL;
> QUERY PLAN
> --------------------------------------------------------------------
> Seq Scan on mock (cost=100000000.00..100000020.00 rows=6 width=8)
> Filter: (b IS NULL)
> (2 rows)

(...)

> ---------------------------(end of broadcast)---------------------------
> TIP 9: the planner will ignore your desire to choose an index scan if your
> joining column's datatypes do not match

That tip helped me :-)

test=# explain select * from mock where (b IS NULL)=true;
QUERY PLAN

----------------------------------------------------------------------
Index Scan using b_is_null on mock (cost=0.00..4.68 rows=1 width=8)
Index Cond: ((b IS NULL) = true)
(2 rows)

--
Tobias Brox, Beijing

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Tobias Brox 2005-05-31 03:31:58 Re: Index on a NULL-value
Previous Message Bruno Wolff III 2005-05-31 03:16:53 Re: Index on a NULL-value