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
a10589a5
Commit
a10589a5
authored
Apr 12, 2015
by
Heikki Linnakangas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove duplicated words in comments.
David Rowley
parent
83aca89f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
src/backend/replication/walsender.c
src/backend/replication/walsender.c
+3
-3
src/backend/utils/adt/array_userfuncs.c
src/backend/utils/adt/array_userfuncs.c
+2
-2
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+1
-1
src/bin/pg_basebackup/pg_basebackup.c
src/bin/pg_basebackup/pg_basebackup.c
+1
-1
No files found.
src/backend/replication/walsender.c
View file @
a10589a5
...
@@ -2183,9 +2183,9 @@ XLogSendPhysical(void)
...
@@ -2183,9 +2183,9 @@ XLogSendPhysical(void)
if
(
sendTimeLineIsHistoric
)
if
(
sendTimeLineIsHistoric
)
{
{
/*
/*
* Streaming an old timeline t
imeline that's in this server's history,
* Streaming an old timeline t
hat's in this server's history, but is
*
but is not the one we're currently inserting or replaying. It can
*
not the one we're currently inserting or replaying. It can be
*
be
streamed up to the point where we switched off that timeline.
* streamed up to the point where we switched off that timeline.
*/
*/
SendRqstPtr
=
sendTimeLineValidUpto
;
SendRqstPtr
=
sendTimeLineValidUpto
;
}
}
...
...
src/backend/utils/adt/array_userfuncs.c
View file @
a10589a5
...
@@ -719,7 +719,7 @@ array_position_common(FunctionCallInfo fcinfo)
...
@@ -719,7 +719,7 @@ array_position_common(FunctionCallInfo fcinfo)
if
(
PG_ARGISNULL
(
1
))
if
(
PG_ARGISNULL
(
1
))
{
{
/* fast return when the array doesn't have
have
nulls */
/* fast return when the array doesn't have nulls */
if
(
!
array_contains_nulls
(
array
))
if
(
!
array_contains_nulls
(
array
))
PG_RETURN_NULL
();
PG_RETURN_NULL
();
searched_element
=
(
Datum
)
0
;
searched_element
=
(
Datum
)
0
;
...
@@ -871,7 +871,7 @@ array_positions(PG_FUNCTION_ARGS)
...
@@ -871,7 +871,7 @@ array_positions(PG_FUNCTION_ARGS)
if
(
PG_ARGISNULL
(
1
))
if
(
PG_ARGISNULL
(
1
))
{
{
/* fast return when the array doesn't have
have
nulls */
/* fast return when the array doesn't have nulls */
if
(
!
array_contains_nulls
(
array
))
if
(
!
array_contains_nulls
(
array
))
PG_RETURN_DATUM
(
makeArrayResult
(
astate
,
CurrentMemoryContext
));
PG_RETURN_DATUM
(
makeArrayResult
(
astate
,
CurrentMemoryContext
));
searched_element
=
(
Datum
)
0
;
searched_element
=
(
Datum
)
0
;
...
...
src/backend/utils/misc/guc.c
View file @
a10589a5
...
@@ -8470,7 +8470,7 @@ read_nondefault_variables(void)
...
@@ -8470,7 +8470,7 @@ read_nondefault_variables(void)
* particular postmaster. Most PGC_INTERNAL variables are compile-time
* particular postmaster. Most PGC_INTERNAL variables are compile-time
* constants; a few, like server_encoding and lc_ctype, are handled specially
* constants; a few, like server_encoding and lc_ctype, are handled specially
* outside the serialize/restore procedure. Therefore, SerializeGUCState()
* outside the serialize/restore procedure. Therefore, SerializeGUCState()
* never sends these, and
and
RestoreGUCState() never changes them.
* never sends these, and RestoreGUCState() never changes them.
*/
*/
static
bool
static
bool
can_skip_gucvar
(
struct
config_generic
*
gconf
)
can_skip_gucvar
(
struct
config_generic
*
gconf
)
...
...
src/bin/pg_basebackup/pg_basebackup.c
View file @
a10589a5
...
@@ -433,7 +433,7 @@ StartLogStreamer(char *startpos, uint32 timeline, char *sysidentifier)
...
@@ -433,7 +433,7 @@ StartLogStreamer(char *startpos, uint32 timeline, char *sysidentifier)
snprintf
(
param
->
xlogdir
,
sizeof
(
param
->
xlogdir
),
"%s/pg_xlog"
,
basedir
);
snprintf
(
param
->
xlogdir
,
sizeof
(
param
->
xlogdir
),
"%s/pg_xlog"
,
basedir
);
/*
/*
* Create pg_xlog/archive_status (and thus pg_xlog) so we can
can
write to
* Create pg_xlog/archive_status (and thus pg_xlog) so we can write to
* basedir/pg_xlog as the directory entry in the tar file may arrive
* basedir/pg_xlog as the directory entry in the tar file may arrive
* later.
* later.
*/
*/
...
...
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