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
2fa55f26
Commit
2fa55f26
authored
Apr 08, 2018
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing "static" markers.
Evidently forgotten in commit
11523e86
. Per buildfarm member pademelon.
parent
b47a86f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
contrib/adminpack/adminpack.c
contrib/adminpack/adminpack.c
+3
-3
No files found.
contrib/adminpack/adminpack.c
View file @
2fa55f26
...
...
@@ -177,7 +177,7 @@ pg_file_write_v1_1(PG_FUNCTION_ARGS)
*
* This handles the actual work for pg_file_write.
*/
int64
static
int64
pg_file_write_internal
(
text
*
file
,
text
*
data
,
bool
replace
)
{
FILE
*
f
;
...
...
@@ -286,7 +286,7 @@ pg_file_rename_v1_1(PG_FUNCTION_ARGS)
*
* This handles the actual work for pg_file_rename.
*/
bool
static
bool
pg_file_rename_internal
(
text
*
file1
,
text
*
file2
,
text
*
file3
)
{
char
*
fn1
,
...
...
@@ -480,7 +480,7 @@ pg_logdir_ls_v1_1(PG_FUNCTION_ARGS)
return
(
pg_logdir_ls_internal
(
fcinfo
));
}
Datum
static
Datum
pg_logdir_ls_internal
(
FunctionCallInfo
fcinfo
)
{
FuncCallContext
*
funcctx
;
...
...
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