aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-08-05 16:21:38 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2016-08-05 16:21:38 -0400
commitfc509cd82443a4cf338032492f6b1bd6e8698f8d (patch)
tree38fa505e79356031e34255600af2f4a769165a56
parentf10eab73df2b94c860dea4a906c54e3c903f42e2 (diff)
downloadpostgresql-fc509cd82443a4cf338032492f6b1bd6e8698f8d.tar.gz
postgresql-fc509cd82443a4cf338032492f6b1bd6e8698f8d.zip
Fix copy-and-pasteo in 81c766b3fd41c78c634d78ebae8d316808dfc630.
Report: <57A4E6DF.8070209@dunslane.net>
-rw-r--r--src/include/utils/tqual.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/tqual.h b/src/include/utils/tqual.h
index fc7328c1e2e..fafe1bd862b 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))