From: Bruce Momjian Date: Sun, 20 Feb 2005 15:00:16 +0000 (+0000) Subject: Fix MAKE_ALL_TUPLES_VISIBLE define. X-Git-Tag: REL9_0_0~10754 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f6a7bef9153c75fea9e7e602e9efc0d688818027;p=pg-rex%2Fsyncrep.git Fix MAKE_ALL_TUPLES_VISIBLE define. --- diff --git a/src/backend/utils/time/tqual.c b/src/backend/utils/time/tqual.c index 1dcd286f3d..a2703b735f 100644 --- a/src/backend/utils/time/tqual.c +++ b/src/backend/utils/time/tqual.c @@ -16,7 +16,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/time/tqual.c,v 1.83 2005/02/20 14:57:47 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/time/tqual.c,v 1.84 2005/02/20 15:00:16 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -961,7 +961,7 @@ HeapTupleSatisfiesSnapshot(HeapTupleHeader tuple, Snapshot snapshot, } /* This is to be used only for disaster recovery and requires serious analysis. */ -#ifdef MAKE_ALL_TUPLES_VISIBLE +#ifndef MAKE_ALL_TUPLES_VISIBLE return false; #else return true;