> The problem appears to be that DataFill() is invoked on the tuple
> after toasting, and it forces the infomask to zero, losing any
> transaction status bits that may have been there. I think perhaps
> line 93 of heaptuple.c should be
>
> *infomask &= HEAP_XACT_MASK;
>
> not
>
> *infomask = 0;
>
> Comments anyone?
One should check all places from where DataFill called...
Btw, I've found that I unlocked buffer in heap_insert *after* WriteBuffer -
fixed.
2Jan - please note NO ELOG(ERROR)... comment in heap_update: can you move
toast
code below xlog one?
Vadim