Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f103501

Browse files
committed
Unuseful tuple.t_data->t_infomask & HEAP_XMIN_COMMITTED in
vc_scanheap().
1 parent fb4f5f7 commit f103501

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/backend/commands/vacuum.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.105 1999/05/29 10:25:30 vadim Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.106 1999/06/03 13:25:54 vadim Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -818,8 +818,7 @@ vc_scanheap(VRelStats *vacrelstats, Relation onerel,
818818
* If tuple is recently deleted then we must not remove it
819819
* from relation.
820820
*/
821-
if (tupgone && tuple.t_data->t_xmax >= XmaxRecent &&
822-
tuple.t_data->t_infomask & HEAP_XMIN_COMMITTED)
821+
if (tupgone && tuple.t_data->t_xmax >= XmaxRecent)
823822
{
824823
tupgone = false;
825824
nkeep++;

0 commit comments

Comments
 (0)