Re: tidscan not work ? Pg 8.4.5 + WinXP

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: tidscan not work ? Pg 8.4.5 + WinXP
Дата
Msg-id 28019.1291135795@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: tidscan not work ? Pg 8.4.5 + WinXP  ("Kevin Grittner" <Kevin.Grittner@wicourts.gov>)
Список pgsql-performance
"Kevin Grittner" <Kevin.Grittner@wicourts.gov> writes:
> pasman pasma*ski<pasman.p@gmail.com> wrote:
>> This below not works :-( Always is used merge join.

>> SELECT * FROM test1 join test2 on(test1.ctid=test2.ct)

> You're reading through the entirety of two tables matching rows
> between them.  What makes you think random access would be faster
> than sequential?

FWIW, it isn't going to happen anyway, because the TID scan mechanism
doesn't support scanning based on a join condition.  That hasn't gotten
to the top of the to-do list because the use case is almost vanishingly
small.  ctids generally aren't stable enough for it to be useful to
store references to one table's ctids in another table.

            regards, tom lane

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

Предыдущее
От: "Kevin Grittner"
Дата:
Сообщение: Re: tidscan not work ? Pg 8.4.5 + WinXP
Следующее
От: "Kevin Grittner"
Дата:
Сообщение: Re: postgresql statements are waiting