Re: [HACKERS] having and union in v7beta

Поиск
Список
Период
Сортировка
От Jose Soares
Тема Re: [HACKERS] having and union in v7beta
Дата
Msg-id 38BA998A.258E068C@sferacarta.com
обсуждение исходный текст
Ответ на having and union in v7beta  (Jose Soares <jose@sferacarta.com>)
Ответы Re: [HACKERS] having and union in v7beta  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers

Tom Lane wrote:

> Jose Soares <jose@sferacarta.com> writes:
> > SELECT...HAVING, this last for example doesn't work.
>
> That's a rather strong statement, and in fact a provably false one.
> How about a detailed bug report rather than "it doesn't work"?
>
> > SELECT ... UNION (is 3 / 4 times slow)
>
> Can't help you on that without more details, either.  What is the
> query exactly, what plan does EXPLAIN show, and what plan did you
> get from 6.5?
>
>                         regards, tom lane




--
Jose' Soares
Bologna, Italy                     Jose@sferacarta.com

psql7=# select count(*) from comuni;count
------- 8342
(1 row)

psql7=> EXPLAIN select distretto from comuni union select codice_fiscale from comuni;
NOTICE:  QUERY PLAN:

Unique  (cost=1767.19..1808.90 rows=1668 width=12) ->  Sort  (cost=1767.19..1767.19 rows=16684 width=12)       ->
Append (cost=0.00..464.84 rows=16684 width=12)               ->  Seq Scan on comuni  (cost=0.00..232.42 rows=8342
width=12)              ->  Seq Scan on comuni  (cost=0.00..232.42 rows=8342 width=12)
 

EXPLAIN


psql65=> select count(*) from comuni;count
------- 8342
(1 row)

psql65=> EXPLAIN select distretto from comuni union select codice_fiscale from comuni;
NOTICE:  QUERY PLAN:

Unique  (cost=848.57 rows=0 width=0) ->  Sort  (cost=848.57 rows=0 width=0)       ->  Append  (cost=848.57 rows=0
width=0)              ->  Seq Scan on comuni  (cost=424.29 rows=8342 width=12)               ->  Seq Scan on comuni
(cost=424.29rows=8342 width=12)
 
EXPLAIN

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

Предыдущее
От: Thomas Lockhart
Дата:
Сообщение: Re: [HACKERS] interesting observatation regarding views and V7.0
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] bug in 7.0