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
23c2dd03
Commit
23c2dd03
authored
Jan 14, 2016
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spelling mistakes.
Same patch submitted independently by David Rowley and Peter Geoghegan.
parent
a923af38
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/backend/executor/nodeGather.c
src/backend/executor/nodeGather.c
+1
-1
src/bin/pg_upgrade/controldata.c
src/bin/pg_upgrade/controldata.c
+1
-1
No files found.
src/backend/executor/nodeGather.c
View file @
23c2dd03
...
@@ -138,7 +138,7 @@ ExecGather(GatherState *node)
...
@@ -138,7 +138,7 @@ ExecGather(GatherState *node)
/*
/*
* Initialize the parallel context and workers on first execution. We do
* Initialize the parallel context and workers on first execution. We do
* this on first execution rather than during node initialization, as it
* this on first execution rather than during node initialization, as it
* needs to allocate large dynamic seg
e
ment, so it is better to do if it
* needs to allocate large dynamic segment, so it is better to do if it
* is really needed.
* is really needed.
*/
*/
if
(
!
node
->
initialized
)
if
(
!
node
->
initialized
)
...
...
src/bin/pg_upgrade/controldata.c
View file @
23c2dd03
...
@@ -539,7 +539,7 @@ check_control_data(ControlData *oldctrl,
...
@@ -539,7 +539,7 @@ check_control_data(ControlData *oldctrl,
pg_fatal
(
"old and new pg_controldata block sizes are invalid or do not match
\n
"
);
pg_fatal
(
"old and new pg_controldata block sizes are invalid or do not match
\n
"
);
if
(
oldctrl
->
largesz
==
0
||
oldctrl
->
largesz
!=
newctrl
->
largesz
)
if
(
oldctrl
->
largesz
==
0
||
oldctrl
->
largesz
!=
newctrl
->
largesz
)
pg_fatal
(
"old and new pg_controldata maximum relation seg
e
ment sizes are invalid or do not match
\n
"
);
pg_fatal
(
"old and new pg_controldata maximum relation segment sizes are invalid or do not match
\n
"
);
if
(
oldctrl
->
walsz
==
0
||
oldctrl
->
walsz
!=
newctrl
->
walsz
)
if
(
oldctrl
->
walsz
==
0
||
oldctrl
->
walsz
!=
newctrl
->
walsz
)
pg_fatal
(
"old and new pg_controldata WAL block sizes are invalid or do not match
\n
"
);
pg_fatal
(
"old and new pg_controldata WAL block sizes are invalid or do not match
\n
"
);
...
...
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