Typecast bug?

Поиск
Список
Период
Сортировка
От Craig James
Тема Typecast bug?
Дата
Msg-id 4863186E.1000306@emolecules.com
обсуждение исходный текст
Ответ на Re: RAID 10 Benchmark with different I/O schedulers  ("Albe Laurenz *EXTERN*" <laurenz.albe@wien.gv.at>)
Ответы Re: Typecast bug?  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Typecast bug?  ("Frank Joerdens" <frank@joerdens.de>)
Список pgsql-performance
This seems like a bug to me, but it shows up as a performance problem.  Since the column being queried is an integer,
thesecond query (see below) can't possibly match, yet Postgres uses a typecast, forcing a full table scan for a value
thatcan't possibly be in the table. 

The application could intercept these bogus queries, but that requires building schema-specific and postgres-specific
knowledgeinto the application (i.e. "What is the maximum legal integer for this column?"). 

Craig


explain analyze select version_id, parent_id from version where version_id = 99999;
                                                     QUERY PLAN
----------------------------------------------------------------------------------------------------------------------
Index Scan using version_pkey on version  (cost=0.00..9.89 rows=1 width=8) (actual time=0.054..0.054 rows=0 loops=1)
  Index Cond: (version_id = 99999)
Total runtime: 0.130 ms
(3 rows)

emol_warehouse_1=> explain analyze select version_id, parent_id from version where version_id =
999999999999999999999999999;
                                                  QUERY PLAN
----------------------------------------------------------------------------------------------------------------
Seq Scan on version  (cost=0.00..253431.77 rows=48393 width=8) (actual time=3135.530..3135.530 rows=0 loops=1)
  Filter: ((version_id)::numeric = 999999999999999999999999999::numeric)
Total runtime: 3135.557 ms
(3 rows)


\d version
Table "emol_warehouse_1.version"
  Column   |  Type   | Modifiers
------------+---------+-----------
version_id | integer | not null
parent_id  | integer | not null
... more columns
Indexes:
   "version_pkey" PRIMARY KEY, btree (version_id)





В списке pgsql-performance по дате отправления:

Предыдущее
От: Henrik
Дата:
Сообщение: Re: Hardware suggestions for high performance 8.3
Следующее
От: Craig James
Дата:
Сообщение: Re: RAID 10 Benchmark with different I/O schedulers