mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Remove PGDLLIMPORT used for binary upgrade; must be on the externs, per Tom.
This commit is contained in:
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/catalog/pg_type.c,v 1.129 2009/12/28 18:39:03 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/catalog/pg_type.c,v 1.130 2009/12/28 18:49:05 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -32,7 +32,7 @@
|
|||||||
#include "utils/rel.h"
|
#include "utils/rel.h"
|
||||||
#include "utils/syscache.h"
|
#include "utils/syscache.h"
|
||||||
|
|
||||||
PGDLLIMPORT Oid binary_upgrade_next_pg_type_oid = InvalidOid;
|
Oid binary_upgrade_next_pg_type_oid = InvalidOid;
|
||||||
|
|
||||||
/* ----------------------------------------------------------------
|
/* ----------------------------------------------------------------
|
||||||
* TypeShellMake
|
* TypeShellMake
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/catalog/toasting.c,v 1.24 2009/12/28 18:39:03 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/catalog/toasting.c,v 1.25 2009/12/28 18:49:05 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -31,7 +31,7 @@
|
|||||||
#include "utils/builtins.h"
|
#include "utils/builtins.h"
|
||||||
#include "utils/syscache.h"
|
#include "utils/syscache.h"
|
||||||
|
|
||||||
PGDLLIMPORT Oid binary_upgrade_next_pg_type_toast_oid = InvalidOid;
|
Oid binary_upgrade_next_pg_type_toast_oid = InvalidOid;
|
||||||
|
|
||||||
static bool create_toast_table(Relation rel, Oid toastOid, Oid toastIndexOid,
|
static bool create_toast_table(Relation rel, Oid toastOid, Oid toastIndexOid,
|
||||||
Datum reloptions, bool force);
|
Datum reloptions, bool force);
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/commands/typecmds.c,v 1.143 2009/12/28 18:39:03 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/commands/typecmds.c,v 1.144 2009/12/28 18:49:05 momjian Exp $
|
||||||
*
|
*
|
||||||
* DESCRIPTION
|
* DESCRIPTION
|
||||||
* The "DefineFoo" routines take the parse tree and pick out the
|
* The "DefineFoo" routines take the parse tree and pick out the
|
||||||
@ -74,7 +74,7 @@ typedef struct
|
|||||||
/* atts[] is of allocated length RelationGetNumberOfAttributes(rel) */
|
/* atts[] is of allocated length RelationGetNumberOfAttributes(rel) */
|
||||||
} RelToCheck;
|
} RelToCheck;
|
||||||
|
|
||||||
PGDLLIMPORT Oid binary_upgrade_next_pg_type_array_oid = InvalidOid;
|
Oid binary_upgrade_next_pg_type_array_oid = InvalidOid;
|
||||||
|
|
||||||
static Oid findTypeInputFunction(List *procname, Oid typeOid);
|
static Oid findTypeInputFunction(List *procname, Oid typeOid);
|
||||||
static Oid findTypeOutputFunction(List *procname, Oid typeOid);
|
static Oid findTypeOutputFunction(List *procname, Oid typeOid);
|
||||||
|
Reference in New Issue
Block a user