Re: possible bug in 8.4

Поиск
Список
Период
Сортировка
От Gregory Stark
Тема Re: possible bug in 8.4
Дата
Msg-id 87k59xkt5m.fsf@oxford.xeocode.com
обсуждение исходный текст
Ответ на Re: possible bug in 8.4  (Grzegorz Jaskiewicz <gj@pointblue.com.pl>)
Ответы Re: possible bug in 8.4  ("Kevin Grittner" <Kevin.Grittner@wicourts.gov>)
Список pgsql-hackers
Grzegorz Jaskiewicz <gj@pointblue.com.pl> writes:

> all I know, is that the same query will work on 8.3 in reasonably  acceptable
> time frame.
>

Because I see the exact same plan -- in fact with the exact same cost:


Welcome to psql 8.3.3, the PostgreSQL interactive terminal.

Type:  \copyright for distribution terms      \h for help with SQL commands      \? for help with psql commands      \g
orterminate with semicolon to execute query      \q to quit
 

postgres=# explain select a.a from a where a not in (select a from b);                              QUERY PLAN
                     
 
-------------------------------------------------------------------------Seq Scan on a  (cost=99035.00..257874197565.00
rows=3000000width=4)  Filter: (NOT (subplan))  SubPlan    ->  Materialize  (cost=99035.00..171493.00 rows=5400000
width=4)         ->  Seq Scan on b  (cost=0.00..75177.00 rows=5400000 width=4)
 
(5 rows)


--  Gregory Stark EnterpriseDB          http://www.enterprisedb.com Ask me about EnterpriseDB's PostGIS support!


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: WAL documentation changes
Следующее
От: KaiGai Kohei
Дата:
Сообщение: Re: Updates of SE-PostgreSQL 8.4devel patches (r1324)