take my index, please

From: Lyn A Headley <laheadle(at)cs(dot)uchicago(dot)edu>
To: pgsql-novice(at)postgresql(dot)org
Subject: take my index, please
Date: 2001-04-27 15:06:45
Message-ID: m37l062xh6.fsf@cs.uchicago.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

greetings, data mutilators,

postgres 7.1, redhat 6.1

I've read a few recent threads about the planner not choosing the
indexes people would like, but my situation seems extraordinary
because I don't even get an index scan on the PRIMARY KEY, even when I
set enable_seqscan to off!

The query is as simple as select a from b where c = n;

I would be very grateful if anyone could explain (heh) to me why the
sequential scan is preferred because this exercise is not academic.

here are some details:

webco=# \d allocation
Table "allocation"
Attribute | Type | Modifier
----------------+--------------------------+----------
allocation_oid | bigint | not null
state | character varying |
location_oid | bigint |
agent_oid | bigint |
patron_oid | bigint |
creation_time | timestamp with time zone |
pickup_time | timestamp with time zone |
return_time | timestamp with time zone |
summary | character varying |
schedule_rule | character varying |
resource_rule | character varying |
Index: allocationpk

webco=# \d allocationpk
Index "allocationpk"
Attribute | Type
----------------+--------
allocation_oid | bigint
unique btree

webco=# explain select * from allocation where allocation_oid = 5;
NOTICE: QUERY PLAN:

Seq Scan on allocation (cost=0.00..2295.79 rows=1 width=104)

EXPLAIN
webco=# set enable_seqscan TO OFF;
SET VARIABLE
webco=# explain select * from allocation where allocation_oid = 5;
NOTICE: QUERY PLAN:

Seq Scan on allocation (cost=100000000.00..100002295.79 rows=1 width=104)

EXPLAIN

indeed.

-Lyn

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Ramiro Arenas Ramírez 2001-04-27 15:08:54 RV: How to delete a table in Postgres ???
Previous Message D. Duccini 2001-04-27 15:06:26 Re: How to delete a table in Postgres ???