Re: the XID question

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: the XID question
Дата
Msg-id 4D36DBE202000025000397F8@gw.wicourts.gov
обсуждение исходный текст
Ответ на Re: the XID question  (Andres Freund <andres@anarazel.de>)
Ответы Re: the XID question
Список pgsql-performance
Andres Freund <andres@anarazel.de> wrote:
> On Wednesday, January 19, 2011 07:06:58 PM Chris Browne wrote:

>> A read-only transaction won't consume XIDs, but if you don't
>> expressly declare it read-only, they're still liable to get
>> eaten...
> No. The Xid is generally only allocated at the first place a real
> xid is needed. See GetCurrentTransactionId, AssignTransactionId in
> xact.c and the caller of the former.

Or just test it in psql.  BEGIN, run your query, look at pg_locks.
If an xid has been assigned, you'll see it there in the
transactionid column.  You can easily satisfy yourself which
statements grab an xid....

-Kevin

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

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: the XID question
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: anti-join chosen even when slower than old plan