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
e51ab85c
Commit
e51ab85c
authored
Feb 01, 2016
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in comments
Author: Michael Paquier
parent
61ce1e8f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
contrib/pgcrypto/fortuna.c
contrib/pgcrypto/fortuna.c
+1
-1
src/backend/postmaster/bgwriter.c
src/backend/postmaster/bgwriter.c
+1
-1
src/backend/replication/logical/origin.c
src/backend/replication/logical/origin.c
+1
-1
src/backend/replication/logical/snapbuild.c
src/backend/replication/logical/snapbuild.c
+1
-1
src/common/pg_lzcompress.c
src/common/pg_lzcompress.c
+1
-1
No files found.
contrib/pgcrypto/fortuna.c
View file @
e51ab85c
...
...
@@ -304,7 +304,7 @@ get_rand_pool(FState *st)
unsigned
rnd
;
/*
* This slightly prefers lower pools - thats OK.
* This slightly prefers lower pools - that
i
s OK.
*/
rnd
=
st
->
key
[
st
->
rnd_pos
]
%
NUM_POOLS
;
...
...
src/backend/postmaster/bgwriter.c
View file @
e51ab85c
...
...
@@ -301,7 +301,7 @@ BackgroundWriterMain(void)
* check whether there has been any WAL inserted since the last time
* we've logged a running xacts.
*
* We do this logging in the bgwriter as its the only process thats
* We do this logging in the bgwriter as its the only process that
i
s
* run regularly and returns to its mainloop all the time. E.g.
* Checkpointer, when active, is barely ever in its mainloop and thus
* makes it hard to log regularly.
...
...
src/backend/replication/logical/origin.c
View file @
e51ab85c
...
...
@@ -677,7 +677,7 @@ StartupReplicationOrigin(void)
errmsg
(
"could not open file
\"
%s
\"
: %m"
,
path
)));
/* verify magic, thats written even if nothing was active */
/* verify magic, that
i
s written even if nothing was active */
readBytes
=
read
(
fd
,
&
magic
,
sizeof
(
magic
));
if
(
readBytes
!=
sizeof
(
magic
))
ereport
(
PANIC
,
...
...
src/backend/replication/logical/snapbuild.c
View file @
e51ab85c
...
...
@@ -612,7 +612,7 @@ SnapBuildExportSnapshot(SnapBuild *builder)
void
SnapBuildClearExportedSnapshot
(
void
)
{
/* nothing exported, thats the usual case */
/* nothing exported, that
i
s the usual case */
if
(
!
ExportInProgress
)
return
;
...
...
src/common/pg_lzcompress.c
View file @
e51ab85c
...
...
@@ -153,7 +153,7 @@
* to be coded into a tag.
*
* Finally the match algorithm checks that at least a match
* of 3 or more bytes has been found, because thats the smallest
* of 3 or more bytes has been found, because that
i
s the smallest
* amount of copy information to code into a tag. If so, a tag
* is omitted and all the input bytes covered by that are just
* scanned for the history add's, otherwise a literal character
...
...
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