Re: query slowness caused by table alias

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: query slowness caused by table alias
Дата
Msg-id 4405.957497111@sss.pgh.pa.us
обсуждение исходный текст
Ответ на query slowness caused by table alias  (Chi Fan <chifungfan@yahoo.com>)
Ответы Re: query slowness caused by table alias  (Peter Eisentraut <e99re41@DoCS.UU.SE>)
Список pgsql-bugs
Chi Fan <chifungfan@yahoo.com> writes:
> I don't know if this's really a bug in 7.0, but I
> don't see this
> problem/feature in 6.5.3.

> EXPLAIN
> SELECT *
> FROM part p              -- let p alias to part
> WHERE part.part_id = 42; -- but don't use p

> Nested Loop  (cost=0.00..2429.30 rows=50735 width=219)
>   -> Index Scan using part_pkey on part (cost=0.00..3.60 rows=1 width=4)
>   -> Seq Scan on part p  (cost=0.00..1918.35 rows=50735 width=215)

This is correct behavior.  Since you aliased part as p, the *only* way
to refer to that FROM entry elsewhere in the query is 'p'.  'part' is a
second reference to the table, resulting in a self-join, just as if you
had written "FROM part p, part part WHERE ...".  The only difference is
that '*' expands to just the fields of tables directly referenced in
FROM, so you don't see two copies of the fields.  (Maybe if you did,
the mistake would be more obvious...)

AFAIK, 6.5 and earlier versions behave the same way as 7.0 on this point.

            regards, tom lane

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

Предыдущее
От: Chi Fan
Дата:
Сообщение: query slowness caused by table alias
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Need some help: attlen is pg_attributes gives a negative value.. .