FW: Index usage

From: "BBI Edwin Punzalan" <edwin(at)bluebamboo(dot)ph>
To: <pgsql-performance(at)postgresql(dot)org>
Subject: FW: Index usage
Date: 2004-11-24 06:52:07
Message-ID: 001401c4d1f2$1df5df00$b400a8c0@bluebamboo.ph
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance


Hi everyone,

Can anyone please explain postgres' behavior on our index.

I did the following query tests on our database:

====================
db=# create index chatlogs_date_idx on chatlogs (date);
CREATE
db=# explain select date from chatlogs where date>='11/23/04';
NOTICE: QUERY PLAN:

Index Scan using chatlogs_date_idx on chatlogs (cost=0.00..144.11 rows=36
width=4)

EXPLAIN
db=# explain select date from chatlogs where date>='10/23/04';
NOTICE: QUERY PLAN:

Seq Scan on chatlogs (cost=0.00..23938.06 rows=253442 width=4)

EXPLAIN====================

Date's datatype is date. Its just odd that I just change the actual date of
search and the index is not being used anymore.

Browse pgsql-performance by date

  From Date Subject
Next Message Greg Stark 2004-11-24 06:52:52 Re: Data type to use for primary key
Previous Message Tom Lane 2004-11-24 06:31:23 Re: Slow execution time when querying view with WHERE clause