OSDN Git Service

Unuseful tuple.t_data->t_infomask & HEAP_XMIN_COMMITTED in
authorVadim B. Mikheev <vadim4o@yahoo.com>
Thu, 3 Jun 1999 13:25:54 +0000 (13:25 +0000)
committerVadim B. Mikheev <vadim4o@yahoo.com>
Thu, 3 Jun 1999 13:25:54 +0000 (13:25 +0000)
vc_scanheap().

src/backend/commands/vacuum.c

index 7fe014e..80a554d 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * 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
                                 * from relation.
                                 */
-                               if (tupgone && tuple.t_data->t_xmax >= XmaxRecent &&
-                                       tuple.t_data->t_infomask & HEAP_XMIN_COMMITTED)
+                               if (tupgone && tuple.t_data->t_xmax >= XmaxRecent)
                                {
                                        tupgone = false;
                                        nkeep++;