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
42fa810c
Commit
42fa810c
authored
Dec 24, 2012
by
Simon Riggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix more weird compiler messages caused
by unmatched function prototypes. Andres Freund
parent
2dcb2ebe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/include/commands/event_trigger.h
src/include/commands/event_trigger.h
+2
-2
src/include/commands/tablecmds.h
src/include/commands/tablecmds.h
+1
-1
No files found.
src/include/commands/event_trigger.h
View file @
42fa810c
...
@@ -36,8 +36,8 @@ extern void RemoveEventTriggerById(Oid ctrigOid);
...
@@ -36,8 +36,8 @@ extern void RemoveEventTriggerById(Oid ctrigOid);
extern
Oid
get_event_trigger_oid
(
const
char
*
trigname
,
bool
missing_ok
);
extern
Oid
get_event_trigger_oid
(
const
char
*
trigname
,
bool
missing_ok
);
extern
void
AlterEventTrigger
(
AlterEventTrigStmt
*
stmt
);
extern
void
AlterEventTrigger
(
AlterEventTrigStmt
*
stmt
);
extern
vo
id
RenameEventTrigger
(
const
char
*
trigname
,
const
char
*
newname
);
extern
O
id
RenameEventTrigger
(
const
char
*
trigname
,
const
char
*
newname
);
extern
vo
id
AlterEventTriggerOwner
(
const
char
*
name
,
Oid
newOwnerId
);
extern
O
id
AlterEventTriggerOwner
(
const
char
*
name
,
Oid
newOwnerId
);
extern
void
AlterEventTriggerOwner_oid
(
Oid
,
Oid
newOwnerId
);
extern
void
AlterEventTriggerOwner_oid
(
Oid
,
Oid
newOwnerId
);
extern
bool
EventTriggerSupportsObjectType
(
ObjectType
obtype
);
extern
bool
EventTriggerSupportsObjectType
(
ObjectType
obtype
);
...
...
src/include/commands/tablecmds.h
View file @
42fa810c
...
@@ -35,7 +35,7 @@ extern void ATExecChangeOwner(Oid relationOid, Oid newOwnerId, bool recursing, L
...
@@ -35,7 +35,7 @@ extern void ATExecChangeOwner(Oid relationOid, Oid newOwnerId, bool recursing, L
extern
void
AlterTableInternal
(
Oid
relid
,
List
*
cmds
,
bool
recurse
);
extern
void
AlterTableInternal
(
Oid
relid
,
List
*
cmds
,
bool
recurse
);
extern
vo
id
AlterTableNamespace
(
AlterObjectSchemaStmt
*
stmt
);
extern
O
id
AlterTableNamespace
(
AlterObjectSchemaStmt
*
stmt
);
extern
void
AlterTableNamespaceInternal
(
Relation
rel
,
Oid
oldNspOid
,
extern
void
AlterTableNamespaceInternal
(
Relation
rel
,
Oid
oldNspOid
,
Oid
nspOid
,
ObjectAddresses
*
objsMoved
);
Oid
nspOid
,
ObjectAddresses
*
objsMoved
);
...
...
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