While changing Cygwin Python to build its core as a DLL (like Win32
Bruce Momjian <bruce@momjian.us>
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
Files
| Path | Change | +/− |
|---|---|---|
| doc/src/sgml/ref/vacuum.sgml | modified | +3 −2 |
| src/backend/access/transam/varsup.c | modified | +45 −1 |
| src/backend/commands/vacuum.c | modified | +81 −1 |
| src/backend/postmaster/postmaster.c | modified | +54 −1 |
| src/backend/storage/file/fd.c | modified | +14 −6 |
| src/backend/storage/lmgr/proc.c | modified | +2 −1 |
| src/include/access/transam.h | modified | +2 −1 |
| src/include/storage/fd.h | modified | +3 −1 |
| src/include/storage/proc.h | modified | +4 −1 |
| src/interfaces/python/pgmodule.c | modified | +2 −5 |