aboutsummaryrefslogtreecommitdiff
path: root/src/include/access/transam.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-05-25 20:00:12 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-05-25 20:00:12 +0000
commit4d567013cf127d10acb5da01c4a484bb635eebe8 (patch)
tree0eaa46e8d4f9abddebeb0313cb4582fa2e68a725 /src/include/access/transam.h
parent29737d83d943820c4362ea1a3b20cde96540b786 (diff)
downloadpostgresql-4d567013cf127d10acb5da01c4a484bb635eebe8.tar.gz
postgresql-4d567013cf127d10acb5da01c4a484bb635eebe8.zip
Remove AMI_OVERRIDE tests from tqual.c routines; they aren't necessary
and just slow down normal operations (only fractionally, but a cycle saved is a cycle earned). Improve documentation of AMI_OVERRIDE behavior.
Diffstat (limited to 'src/include/access/transam.h')
-rw-r--r--src/include/access/transam.h20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/include/access/transam.h b/src/include/access/transam.h
index 6df60abb2dd..d13e5608bad 100644
--- a/src/include/access/transam.h
+++ b/src/include/access/transam.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: transam.h,v 1.44 2001/11/05 17:46:31 momjian Exp $
+ * $Id: transam.h,v 1.45 2002/05/25 20:00:12 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -92,6 +92,13 @@ typedef VariableCacheData *VariableCache;
* ----------------
*/
+/* in transam/transam.c */
+extern bool AMI_OVERRIDE;
+
+/* in transam/varsup.c */
+extern VariableCache ShmemVariableCache;
+
+
/*
* prototypes for functions in transam/transam.c
*/
@@ -111,15 +118,4 @@ extern TransactionId ReadNewTransactionId(void);
extern Oid GetNewObjectId(void);
extern void CheckMaxObjectId(Oid assigned_oid);
-/* ----------------
- * global variable extern declarations
- * ----------------
- */
-
-/* in xact.c */
-extern bool AMI_OVERRIDE;
-
-/* in varsup.c */
-extern VariableCache ShmemVariableCache;
-
#endif /* TRAMSAM_H */