btree and is null in a static expression - Mailing list pgsql-sql

From KÖPFERL Robert
Subject btree and is null in a static expression
Date
Msg-id ED4E30DD9C43D5118DFB00508BBBA76EB166B4@neptun.sonorys.at
Whole thread Raw
List pgsql-sql
Hi,

I've written a function but I don't understand the the plan, the planner
makes.
If variables are replaced, the function looks like that:

select a,b,c from "Tbl1" where (a='454') or ('454' is null);


a has got an btree-Index.

explain verbose tells me that Postgres wants to do a SEQSCAN
If the last subexpression is omitted like
select a,b,c from "Tbl1" where (a='454') or false;

The planner wants expecedly utilize an index.

How comes that, while it is obvious that the last subexpression evaluates to
false and thus can be omitted or can even be statically evaluated

I read about btree-Indexes and that they can't be used when null comes into
play. But there?


Thanks


pgsql-sql by date:

Previous
From: "Dinesh Pandey"
Date:
Subject: "pltcl" function.
Next
From: "Frank Habermann"
Date:
Subject: user connection over tcp