dbTalk Databases Forums  

[BUGS] BUG #1984: automatic casting for using indexes on bigint

mailing.database.pgsql-bugs mailing.database.pgsql-bugs


Discuss [BUGS] BUG #1984: automatic casting for using indexes on bigint in the mailing.database.pgsql-bugs forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Atanas Hristov
 
Posts: n/a

Default [BUGS] BUG #1984: automatic casting for using indexes on bigint - 10-22-2005 , 10:56 AM







The following bug has been logged online:

Bug reference: 1984
Logged by: Atanas Hristov
Email address: atanashristov (AT) hotmail (DOT) com
PostgreSQL version: 8.1
Operating system: FreeBSD5
Description: automatic casting for using indexes on bigint
Details:

Maybe it is more convient to cast automaticly in sich a case? :

personalities=> create table foo (id bigint);
CREATE TABLE
personalities=> explain analyze select * from foo where id = 0;
QUERY PLAN
----------------------------------------------------------------------------
-----------------
Seq Scan on foo (cost=0.00..0.00 rows=1 width=8) (actual time=0.007..0.007
rows=0 loops=1)
Filter: (id = 0)
Total runtime: 21.140 ms
(3 rows)

personalities=> explain analyze select * from foo where cast(id as bigint) =
0;
QUERY PLAN
----------------------------------------------------------------------------
-----------------
Seq Scan on foo (cost=0.00..0.00 rows=1 width=8) (actual time=0.006..0.006
rows=0 loops=1)
Filter: (id = 0)
Total runtime: 0.077 ms
(3 rows)


best regards and thank you for the great database!!!

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

Reply With Quote
  #2  
Old   
Tom Lane
 
Posts: n/a

Default Re: [BUGS] BUG #1984: automatic casting for using indexes on bigint - 10-22-2005 , 11:26 AM






"Atanas Hristov" <atanashristov (AT) hotmail (DOT) com> writes:
Quote:
Maybe it is more convient to cast automaticly in sich a case? :
These are the same query. I think you've forgotten to consider the
effects of caching on repeated execution of a query.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.