Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
0d399d57
Commit
0d399d57
authored
Dec 28, 2009
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove PGDLLIMPORT used for binary upgrade; must be on the externs, per Tom.
parent
3687b2e0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
src/backend/catalog/pg_type.c
src/backend/catalog/pg_type.c
+2
-2
src/backend/catalog/toasting.c
src/backend/catalog/toasting.c
+2
-2
src/backend/commands/typecmds.c
src/backend/commands/typecmds.c
+2
-2
No files found.
src/backend/catalog/pg_type.c
View file @
0d399d57
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/catalog/pg_type.c,v 1.1
29 2009/12/28 18:39:03
momjian Exp $
* $PostgreSQL: pgsql/src/backend/catalog/pg_type.c,v 1.1
30 2009/12/28 18:49:05
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -32,7 +32,7 @@
...
@@ -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
...
...
src/backend/catalog/toasting.c
View file @
0d399d57
...
@@ -8,7 +8,7 @@
...
@@ -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.2
4 2009/12/28 18:39:03
momjian Exp $
* $PostgreSQL: pgsql/src/backend/catalog/toasting.c,v 1.2
5 2009/12/28 18:49:05
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -31,7 +31,7 @@
...
@@ -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
);
...
...
src/backend/commands/typecmds.c
View file @
0d399d57
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/commands/typecmds.c,v 1.14
3 2009/12/28 18:39:03
momjian Exp $
* $PostgreSQL: pgsql/src/backend/commands/typecmds.c,v 1.14
4 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
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment