|
7 | 7 | * |
8 | 8 | * |
9 | 9 | * 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 $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
@@ -818,8 +818,7 @@ vc_scanheap(VRelStats *vacrelstats, Relation onerel, |
818 | 818 | * If tuple is recently deleted then we must not remove it |
819 | 819 | * from relation. |
820 | 820 | */ |
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) |
823 | 822 | { |
824 | 823 | tupgone= false; |
825 | 824 | nkeep++; |
|