mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
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
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: proc.h,v 1.41 2001/03/22 04:01:08 momjian Exp $
|
||||
* $Id: proc.h,v 1.42 2001/05/25 15:34:50 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -50,6 +50,9 @@ struct proc
|
||||
* were starting our xact: vacuum must not
|
||||
* remove tuples deleted by xid >= xmin ! */
|
||||
|
||||
Oid startOid; /* oid at startup, used by vacuum to find
|
||||
* orphaned files.
|
||||
*/
|
||||
/*
|
||||
* XLOG location of first XLOG record written by this backend's
|
||||
* current transaction. If backend is not in a transaction or hasn't
|
||||
|
Reference in New Issue
Block a user