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
56f39009
Commit
56f39009
authored
Oct 26, 2016
by
Heikki Linnakangas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in comments.
Vinayak Pokale
parent
8a2f08fb
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/backend/postmaster/pgstat.c
src/backend/postmaster/pgstat.c
+1
-1
src/backend/replication/logical/reorderbuffer.c
src/backend/replication/logical/reorderbuffer.c
+1
-1
src/include/pgstat.h
src/include/pgstat.h
+1
-1
No files found.
src/backend/postmaster/pgstat.c
View file @
56f39009
...
@@ -2411,7 +2411,7 @@ pgstat_fetch_stat_beentry(int beid)
...
@@ -2411,7 +2411,7 @@ pgstat_fetch_stat_beentry(int beid)
/* ----------
/* ----------
* pgstat_fetch_stat_local_beentry() -
* pgstat_fetch_stat_local_beentry() -
*
*
* Like pgstat_fetch_stat_beentry() but with locally computed addtions (like
* Like pgstat_fetch_stat_beentry() but with locally computed add
i
tions (like
* xid and xmin values of the backend)
* xid and xmin values of the backend)
*
*
* NB: caller is responsible for a check if the user is permitted to see
* NB: caller is responsible for a check if the user is permitted to see
...
...
src/backend/replication/logical/reorderbuffer.c
View file @
56f39009
...
@@ -2552,7 +2552,7 @@ ReorderBufferRestoreChange(ReorderBuffer *rb, ReorderBufferTXN *txn,
...
@@ -2552,7 +2552,7 @@ ReorderBufferRestoreChange(ReorderBuffer *rb, ReorderBufferTXN *txn,
Assert
(
change
->
data
.
msg
.
prefix
[
prefix_size
-
1
]
==
'\0'
);
Assert
(
change
->
data
.
msg
.
prefix
[
prefix_size
-
1
]
==
'\0'
);
data
+=
prefix_size
;
data
+=
prefix_size
;
/* read the mess
s
age */
/* read the message */
memcpy
(
&
change
->
data
.
msg
.
message_size
,
data
,
sizeof
(
Size
));
memcpy
(
&
change
->
data
.
msg
.
message_size
,
data
,
sizeof
(
Size
));
data
+=
sizeof
(
Size
);
data
+=
sizeof
(
Size
);
change
->
data
.
msg
.
message
=
MemoryContextAlloc
(
rb
->
context
,
change
->
data
.
msg
.
message
=
MemoryContextAlloc
(
rb
->
context
,
...
...
src/include/pgstat.h
View file @
56f39009
...
@@ -895,7 +895,7 @@ typedef struct PgBackendStatus
...
@@ -895,7 +895,7 @@ typedef struct PgBackendStatus
/*
/*
* Command progress reporting. Any command which wishes can advertise
* Command progress reporting. Any command which wishes can advertise
* that it is running by setting st_progress_command,
* that it is running by setting st_progress_command,
* st_progress_command_target, and st_progress_
command
[].
* st_progress_command_target, and st_progress_
param
[].
* st_progress_command_target should be the OID of the relation which the
* st_progress_command_target should be the OID of the relation which the
* command targets (we assume there's just one, as this is meant for
* command targets (we assume there's just one, as this is meant for
* utility commands), but the meaning of each element in the
* utility commands), but the meaning of each element in the
...
...
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