]> granicus.if.org Git - postgresql/commitdiff
C comment: clearify SQL command mention
authorBruce Momjian <bruce@momjian.us>
Fri, 20 Mar 2015 22:30:30 +0000 (18:30 -0400)
committerBruce Momjian <bruce@momjian.us>
Fri, 20 Mar 2015 22:30:30 +0000 (18:30 -0400)
Patch by Amit Langote

src/bin/pg_dump/pg_dump.c

index fdfb4317f4bc1222d00942a1373082ad6b15a99d..f24fefa2753bf7d671c25f53f40ebf0a74a55b12 100644 (file)
@@ -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.