summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas2016-01-15 04:12:05 +0000
committerRobert Haas2016-01-15 04:16:40 +0000
commit23c2dd03d5db2f4a20dcd09bd6c49e293e3c8f03 (patch)
treef742b401b8a8a8d4bae14585335bbf1314362807
parenta923af382c5678f3dfb591aacb6b90bf4e5ed7a9 (diff)
Fix spelling mistakes.
Same patch submitted independently by David Rowley and Peter Geoghegan.
-rw-r--r--src/backend/executor/nodeGather.c2
-rw-r--r--src/bin/pg_upgrade/controldata.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeGather.c b/src/backend/executor/nodeGather.c
index 046f156ff5..16c981b48b 100644
--- a/src/backend/executor/nodeGather.c
+++ b/src/backend/executor/nodeGather.c
@@ -138,7 +138,7 @@ ExecGather(GatherState *node)
/*
* Initialize the parallel context and workers on first execution. We do
* 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.
*/
if (!node->initialized)
diff --git a/src/bin/pg_upgrade/controldata.c b/src/bin/pg_upgrade/controldata.c
index 1f7b65eb66..2def7290a2 100644
--- a/src/bin/pg_upgrade/controldata.c
+++ b/src/bin/pg_upgrade/controldata.c
@@ -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");
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)
pg_fatal("old and new pg_controldata WAL block sizes are invalid or do not match\n");