Commit 59191b22 authored by Bruce Momjian's avatar Bruce Momjian

I have added a define, MAKE_ALL_TUPLES_VISIBLE, to help people recover

deleted tuples. Of course it is only to be used for disaster recovery.
parent 3f9aec50
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/time/tqual.c,v 1.81 2004/12/31 22:02:56 pgsql Exp $ * $PostgreSQL: pgsql/src/backend/utils/time/tqual.c,v 1.82 2005/02/20 04:56:00 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -776,6 +776,11 @@ bool ...@@ -776,6 +776,11 @@ bool
HeapTupleSatisfiesSnapshot(HeapTupleHeader tuple, Snapshot snapshot, HeapTupleSatisfiesSnapshot(HeapTupleHeader tuple, Snapshot snapshot,
Buffer buffer) Buffer buffer)
{ {
/* This is to be used only for disaster recovery and requires serious analysis. */
#ifdef MAKE_ALL_TUPLES_VISIBLE
return true;
#endif
if (!(tuple->t_infomask & HEAP_XMIN_COMMITTED)) if (!(tuple->t_infomask & HEAP_XMIN_COMMITTED))
{ {
if (tuple->t_infomask & HEAP_XMIN_INVALID) if (tuple->t_infomask & HEAP_XMIN_INVALID)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment