INDEX BUG???

From: "gabriel" <gabriel(at)workingnetsp(dot)com(dot)br>
To: pgsql-hackers(at)postgresql(dot)org
Subject: INDEX BUG???
Date: 2001-09-03 13:08:40
Message-ID: 20010903130840.21272.qmail@hm36.locaweb.com.br
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


hello All

I tried the following commands:
ponto=# explain select * from horarios where funcionario>10000;
NOTICE: QUERY PLAN:

Seq Scan on horarios (cost=0.00..176.21 rows=2432 width=132)

EXPLAIN
ponto=# explain select * from horarios where funcionario=10000;
NOTICE: QUERY PLAN:

Index Scan using horarios_func_data on horarios (cost=0.00..55.37 rows=73
width=132)

EXPLAIN

So my question is why in the first case the postgre did'nt use the index
and made a seq scan ??

thanks and sorry about my english...

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Marc G. Fournier 2001-09-03 15:46:29 ignore ...
Previous Message Henshall, Stuart - WCP 2001-09-03 09:03:55 Re: Porting to Native WindowsNT/2000