diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-05-25 15:34:50 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-05-25 15:34:50 +0000 |
commit | dffb673692f96a6cc52411762b8ba07201687313 (patch) | |
tree | 7acaeec28897f6210054bbdf038c93dbf9479a92 /src/include/access/transam.h | |
parent | 3f7c542a605ae59a457f6665cda5525a7c650978 (diff) |
While changing Cygwin Python to build its core as a DLL (like Win32
Python) to support shared extension modules, I have learned that Guido
prefers the style of the attached patch to solve the above problem.
I feel that this solution is particularly appropriate in this case
because the following:
PglargeType
PgType
PgQueryType
are already being handled in the way that I am proposing for PgSourceType.
Jason Tishler
Diffstat (limited to 'src/include/access/transam.h')
-rw-r--r-- | src/include/access/transam.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/access/transam.h b/src/include/access/transam.h index b18f26b951e..6278665345f 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.33 2001/05/14 20:30:21 momjian Exp $ + * $Id: transam.h,v 1.34 2001/05/25 15:34:50 momjian Exp $ * * NOTES * Transaction System Version 101 now support proper oid @@ -133,6 +133,7 @@ extern void GetNewTransactionId(TransactionId *xid); extern void ReadNewTransactionId(TransactionId *xid); extern void GetNewObjectId(Oid *oid_return); extern void CheckMaxObjectId(Oid assigned_oid); +extern Oid GetMinStartupOid(void); /* ---------------- * global variable extern declarations |