Re: postgres 7.1.3: why does the query plan ignore indexes?

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Marco Vezzoli <marco(dot)vezzoli(at)st(dot)com>, sql <pgsql-sql(at)postgresql(dot)org>
Subject: Re: postgres 7.1.3: why does the query plan ignore indexes?
Date: 2003-08-26 04:17:59
Message-ID: 200308260417.h7Q4Hxo01179@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


Should we consider adding some warning when someone creates an index on
an int2 column?

---------------------------------------------------------------------------

Tom Lane wrote:
> Marco Vezzoli <marco(dot)vezzoli(at)st(dot)com> writes:
> > ewsweb_test=> \d measures_product
> > Index "measures_product"
> > Attribute | Type
> > ------------+----------
> > product_id | smallint
> ^^^^^^^^
>
> > ewsweb_test=> explain select zero_yield, gross from measures where
> > product_id=29 and date between '2003-03-12' and '2003-08-14';
> ^^^^^^^^^^^^^
>
> "29" is taken as an integer (int4). To get an indexscan on an int2
> column, you need to explicitly cast it to int2:
> product_id = 29::smallint
> or you can put it in quotes and let the parser figure out the right
> type:
> product_id = '29'
>
> Yes, we'd like to make this better, but there are surprisingly many
> pitfalls in tinkering with the assignment of datatypes to constants...
>
> regards, tom lane
>
> PS: you could also consider whether it's really saving you any space to
> store product_id as a smallint instead of int. Because of alignment
> considerations, it very possibly isn't.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: the planner will ignore your desire to choose an index scan if your
> joining column's datatypes do not match
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message BenLaKnet 2003-08-26 06:50:44 Re: [ZODB-Dev] What are the ZopeDB limit?
Previous Message Ian Barwick 2003-08-26 03:46:19 Re: How to join from two tables at once?