_RollbackFunc : dead code? - Mailing list pgsql-hackers

From Alvaro Herrera
Subject _RollbackFunc : dead code?
Date
Msg-id 20050327193917.GA14232@dcc.uchile.cl
Whole thread Raw
Responses Re: _RollbackFunc : dead code?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
While trying to grok heap_update I came again across the
_heap_unlock_tuple function.  This code apparently tries to save a XLog
round while trying to mark a tuple for update, by registering a
"rollback callback", which would unmark the tuple in case the
transaction is rolled back.

Turns out the callback is never called at all.  So the code is dead
code.

Also, it claims that by marking t_infomask with a special
HEAP_XMAX_UNLOGGED bit, this trick would not suffer across a system
crash, because tqual routines would check this bit (comments in the code
don't specify what would the routines do with it).

Turns out tqual routines never check the bit.  In fact, the bit is never
checked at all, nowhere in the code: heap_update sets it and then
unsets it, but that's all.

So I think this is dead code.  The attached patch removes it.

--
Alvaro Herrera (<alvherre[@]dcc.uchile.cl>)
Maybe there's lots of data loss but the records of data loss are also lost.
(Lincoln Yeoh)

Attachment

pgsql-hackers by date:

Previous
From: Devrim GUNDUZ
Date:
Subject: Re: pg_dump issue : Cannot drop a non-existent(?) trigger
Next
From: Alvaro Herrera
Date:
Subject: Re: Making oidvector and int2vector variable-length