mirror of
https://github.com/postgres/postgres.git
synced 2025-06-06 00:02:36 -04:00
Unuseful tuple.t_data->t_infomask & HEAP_XMIN_COMMITTED in
vc_scanheap().
This commit is contained in:
parent
fb4f5f7cac
commit
f103501286
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.105 1999/05/29 10:25:30 vadim Exp $
|
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.106 1999/06/03 13:25:54 vadim Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -818,8 +818,7 @@ vc_scanheap(VRelStats *vacrelstats, Relation onerel,
|
|||||||
* If tuple is recently deleted then we must not remove it
|
* If tuple is recently deleted then we must not remove it
|
||||||
* from relation.
|
* from relation.
|
||||||
*/
|
*/
|
||||||
if (tupgone && tuple.t_data->t_xmax >= XmaxRecent &&
|
if (tupgone && tuple.t_data->t_xmax >= XmaxRecent)
|
||||||
tuple.t_data->t_infomask & HEAP_XMIN_COMMITTED)
|
|
||||||
{
|
{
|
||||||
tupgone = false;
|
tupgone = false;
|
||||||
nkeep++;
|
nkeep++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user