Re: Index-only scans and non-MVCC snapshots

Поиск
Список
Период
Сортировка
От Ryan Johnson
Тема Re: Index-only scans and non-MVCC snapshots
Дата
Msg-id 53AD8211.1040108@cs.utoronto.ca
обсуждение исходный текст
Ответ на Re: Index-only scans and non-MVCC snapshots  (Andres Freund <andres@2ndquadrant.com>)
Ответы Re: Index-only scans and non-MVCC snapshots
Список pgsql-hackers
On 27/06/2014 3:14 AM, Andres Freund wrote:
> On 2014-06-26 22:47:47 -0600, Ryan Johnson wrote:
>> Hi,
>>
>> As part of a research project, I'm trying to change Read Committed isolation
>> to use HeapTupleSatisfiesNow rather than acquiring a new snapshot at every
>> command [1]. Things appear to have gone reasonably well so far, except
>> certain queries fail with "ERROR:  non-MVCC snapshots are not supported in
>> index-only scans."
> You're aware that unless you employ additional locking you can simply
> miss individual rows or see them several times because of concurrent
> updates?
> The reason it has worked (< 9.4) for system catalogs is that updates of
> rows were only performed while objects were locked access exclusively -
> that's the reason why some places in the code use inplace updates btw...
Yes, I was aware of the need for locking. The documentation just made it 
sound that locking was already in place for non-MVCC index scans. I was 
hoping I'd missed some easy way to activate it.

Regards,
Ryan




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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: Re: WAL replay bugs
Следующее
От: Andres Freund
Дата:
Сообщение: Re: Index-only scans and non-MVCC snapshots