aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKevin Grittner <kgrittn@postgresql.org>2015-06-27 09:55:08 -0500
committerKevin Grittner <kgrittn@postgresql.org>2015-06-27 09:55:08 -0500
commit524e1e40316afc3cf8ba70910fefe1f99b18144f (patch)
tree2dcd1bcb336523258f4646d5dc46deca5198b89e /src
parent8ab0ef89d918eacda05413a6ea593b0d6e9525b9 (diff)
downloadpostgresql-524e1e40316afc3cf8ba70910fefe1f99b18144f.tar.gz
postgresql-524e1e40316afc3cf8ba70910fefe1f99b18144f.zip
Add opaque declaration of HTAB to tqual.h.
Commit b89e151054a05f0f6d356ca52e3b725dd0505e53 added the ResolveCminCmaxDuringDecoding declaration to tqual.h, which uses an HTAB parameter, without declaring HTAB. It accidentally fails to fail to build with current sources because a declaration happens to be included, directly or indirectly, in all source files that currently use tqual.h before tqual.h is first included, but we shouldn't count on that. Since an opaque declaration is enough here, just use that, as was done in snapmgr.h. Backpatch to 9.4, where the HTAB reference was added to tqual.h.
Diffstat (limited to 'src')
-rw-r--r--src/include/utils/tqual.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/utils/tqual.h b/src/include/utils/tqual.h
index 17aad86add6..e68ef0a4fdb 100644
--- a/src/include/utils/tqual.h
+++ b/src/include/utils/tqual.h
@@ -94,6 +94,7 @@ extern bool HeapTupleHeaderIsOnlyLocked(HeapTupleHeader tuple);
* To avoid leaking too much knowledge about reorderbuffer implementation
* details this is implemented in reorderbuffer.c not tqual.c.
*/
+struct HTAB;
extern bool ResolveCminCmaxDuringDecoding(struct HTAB *tuplecid_data,
Snapshot snapshot,
HeapTuple htup,