From: Tom Lane Date: Fri, 5 Aug 2016 20:21:38 +0000 (-0400) Subject: Fix copy-and-pasteo in 81c766b3fd41c78c634d78ebae8d316808dfc630. X-Git-Tag: REL9_6_BETA4~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc509cd82443a4cf338032492f6b1bd6e8698f8d;p=postgresql Fix copy-and-pasteo in 81c766b3fd41c78c634d78ebae8d316808dfc630. Report: <57A4E6DF.8070209@dunslane.net> --- diff --git a/src/include/utils/tqual.h b/src/include/utils/tqual.h index fc7328c1e2..fafe1bd862 100644 --- a/src/include/utils/tqual.h +++ b/src/include/utils/tqual.h @@ -105,7 +105,7 @@ extern bool ResolveCminCmaxDuringDecoding(struct HTAB *tuplecid_data, * to set lsn and whenTaken correctly to support snapshot_too_old. */ #define InitToastSnapshot(snapshotdata, l, w) \ - ((snapshotdata).satisfies = HeapTupleSatisfiesDirty, \ + ((snapshotdata).satisfies = HeapTupleSatisfiesToast, \ (snapshotdata).lsn = (l), \ (snapshotdata).whenTaken = (w))