Re: Huge speed penalty using <>TRUE instead of =FALSE - Mailing list pgsql-bugs

From Peter Eisentraut
Subject Re: Huge speed penalty using <>TRUE instead of =FALSE
Date
Msg-id 200907171336.44198.peter_e@gmx.net
Whole thread Raw
In response to Huge speed penalty using <>TRUE instead of =FALSE  (Jan-Ivar Mellingen <jan-ivar.mellingen@alreg.no>)
List pgsql-bugs
On Friday 17 July 2009 11:12:41 Jan-Ivar Mellingen wrote:
> One of our customers discovered that by replacing <>TRUE with =FALSE in
> a query of a table containing 750.000 records reduced the query time
> from about 12 seconds to about 60 milliseconds!

> This is a dramatical difference, but I cannot understand why. In my head
> "<>TRUE" should behave exactly the same as "=FALSE". This looks like a
> bug to me, or am I overlooking something?

The planner just isn't that smart.  The boolean type is a special case where
<> some_value implies = some_other_value, but this doesn't generalize well to
other data types.  And the planner doesn't have a whole lot of data type
specific knowledge.

I think a better index definition might actually be on alarm_status, with a
partial index predicate on logg_avsluttet = false.

pgsql-bugs by date:

Previous
From: Frank van Vugt
Date:
Subject: Re: bug or simply not enough stack space?
Next
From: "handling numeric literals with dots in psql \copy command"
Date:
Subject: BUG #4927: psql does "spoil" the query before sending it to server