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
c1907f0c
Commit
c1907f0c
authored
May 17, 2014
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bunch of functions that were declared static then defined not-static.
Per testing with a compiler that whines about this.
parent
6c42b2b1
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
src/backend/access/transam/xlog.c
src/backend/access/transam/xlog.c
+1
-1
src/backend/replication/logical/reorderbuffer.c
src/backend/replication/logical/reorderbuffer.c
+1
-1
src/backend/utils/cache/relcache.c
src/backend/utils/cache/relcache.c
+1
-1
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+1
-1
src/bin/pg_ctl/pg_ctl.c
src/bin/pg_ctl/pg_ctl.c
+1
-1
No files found.
src/backend/access/transam/xlog.c
View file @
c1907f0c
...
...
@@ -8318,7 +8318,7 @@ CreateCheckPoint(int flags)
* CreateRestartPoint() allows for the case where recovery may end before
* the restartpoint completes so there is no concern of concurrent behaviour.
*/
void
static
void
CreateEndOfRecoveryRecord
(
void
)
{
xl_end_of_recovery
xlrec
;
...
...
src/backend/replication/logical/reorderbuffer.c
View file @
c1907f0c
...
...
@@ -322,7 +322,7 @@ ReorderBufferGetTXN(ReorderBuffer *rb)
* Deallocation might be delayed for efficiency purposes, for details check
* the comments above max_cached_changes's definition.
*/
void
static
void
ReorderBufferReturnTXN
(
ReorderBuffer
*
rb
,
ReorderBufferTXN
*
txn
)
{
/* clean the lookup cache if we were cached (quite likely) */
...
...
src/backend/utils/cache/relcache.c
View file @
c1907f0c
...
...
@@ -2381,7 +2381,7 @@ RelationCloseSmgrByOid(Oid relationId)
RelationCloseSmgr
(
relation
);
}
void
static
void
RememberToFreeTupleDescAtEOX
(
TupleDesc
td
)
{
if
(
EOXactTupleDescArray
==
NULL
)
...
...
src/backend/utils/misc/guc.c
View file @
c1907f0c
...
...
@@ -5340,7 +5340,7 @@ config_enum_get_options(struct config_enum * record, const char *prefix,
* 1: the value is valid
* 0: the name or value is invalid
*/
bool
static
bool
validate_conf_option
(
struct
config_generic
*
record
,
const
char
*
name
,
const
char
*
value
,
GucSource
source
,
int
elevel
,
bool
freemem
,
void
*
newval
,
void
**
newextra
)
...
...
src/bin/pg_ctl/pg_ctl.c
View file @
c1907f0c
...
...
@@ -399,7 +399,7 @@ readfile(const char *path)
/*
* Free memory allocated for optlines through readfile()
*/
void
static
void
free_readfile
(
char
**
optlines
)
{
char
*
curr_line
=
NULL
;
...
...
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