Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
1b9f24c8
Commit
1b9f24c8
authored
26 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Add missing function prototypes to stifle gcc warnings.
parent
ad5a54d1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/executor/executor.h
+4
-2
4 additions, 2 deletions
src/include/executor/executor.h
with
4 additions
and
2 deletions
src/include/executor/executor.h
+
4
−
2
View file @
1b9f24c8
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: executor.h,v 1.3
1
1999/0
2
/1
3
2
3
:2
1
:23
momjian
Exp $
* $Id: executor.h,v 1.3
2
1999/0
4
/1
6
2
1
:2
7
:23
tgl
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -151,7 +151,7 @@ extern TupleDesc ExecTypeFromTL(List *targetList);
...
@@ -151,7 +151,7 @@ extern TupleDesc ExecTypeFromTL(List *targetList);
extern
void
SetChangedParamList
(
Plan
*
node
,
List
*
newchg
);
extern
void
SetChangedParamList
(
Plan
*
node
,
List
*
newchg
);
/*
/*
* prototypes from functions in exec
Tuple
s.c
* prototypes from functions in exec
Util
s.c
*/
*/
extern
void
ResetTupleCount
(
void
);
extern
void
ResetTupleCount
(
void
);
extern
void
ExecAssignNodeBaseInfo
(
EState
*
estate
,
CommonState
*
basenode
,
extern
void
ExecAssignNodeBaseInfo
(
EState
*
estate
,
CommonState
*
basenode
,
...
@@ -165,6 +165,8 @@ extern void ExecAssignResultTypeFromTL(Plan *node, CommonState *commonstate);
...
@@ -165,6 +165,8 @@ extern void ExecAssignResultTypeFromTL(Plan *node, CommonState *commonstate);
extern
TupleDesc
ExecGetResultType
(
CommonState
*
commonstate
);
extern
TupleDesc
ExecGetResultType
(
CommonState
*
commonstate
);
extern
void
ExecAssignProjectionInfo
(
Plan
*
node
,
CommonState
*
commonstate
);
extern
void
ExecAssignProjectionInfo
(
Plan
*
node
,
CommonState
*
commonstate
);
extern
void
ExecFreeProjectionInfo
(
CommonState
*
commonstate
);
extern
void
ExecFreeProjectionInfo
(
CommonState
*
commonstate
);
extern
void
ExecFreeExprContext
(
CommonState
*
commonstate
);
extern
void
ExecFreeTypeInfo
(
CommonState
*
commonstate
);
extern
TupleDesc
ExecGetScanType
(
CommonScanState
*
csstate
);
extern
TupleDesc
ExecGetScanType
(
CommonScanState
*
csstate
);
extern
void
ExecAssignScanType
(
CommonScanState
*
csstate
,
extern
void
ExecAssignScanType
(
CommonScanState
*
csstate
,
TupleDesc
tupDesc
);
TupleDesc
tupDesc
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment