aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2015-03-20 18:30:30 -0400
committerBruce Momjian <bruce@momjian.us>2015-03-20 18:30:30 -0400
commit0c8fa710b69afffa2e7926ef3e6c372c2d8609f2 (patch)
tree4163b224723ab4a8212a2220da57b9eb3e522049 /src
parent159134b695f9f2ac4ccefe8c41d5af0aa26bba13 (diff)
downloadpostgresql-0c8fa710b69afffa2e7926ef3e6c372c2d8609f2.tar.gz
postgresql-0c8fa710b69afffa2e7926ef3e6c372c2d8609f2.zip
C comment: clearify SQL command mention
Patch by Amit Langote
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_dump/pg_dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index fdfb4317f4b..f24fefa2753 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -13742,7 +13742,7 @@ dumpTableSchema(Archive *fout, DumpOptions *dopt, TableInfo *tbinfo)
* here, also updating their attlen/attalign values so that the
* dropped column can be skipped properly. (We do not bother with
* restoring the original attbyval setting.) Also, inheritance
- * relationships are set up by doing ALTER INHERIT rather than using
+ * relationships are set up by doing ALTER TABLE INHERIT rather than using
* an INHERITS clause --- the latter would possibly mess up the column
* order. That also means we have to take care about setting
* attislocal correctly, plus fix up any inherited CHECK constraints.