Commit 23c2dd03 authored by Robert Haas's avatar Robert Haas

Fix spelling mistakes.

Same patch submitted independently by David Rowley and Peter Geoghegan.
parent a923af38
...@@ -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 segement, 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)
......
...@@ -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 segement 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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment