From 0c8fa710b69afffa2e7926ef3e6c372c2d8609f2 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 20 Mar 2015 18:30:30 -0400 Subject: [PATCH] C comment: clearify SQL command mention Patch by Amit Langote --- src/bin/pg_dump/pg_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index fdfb4317f4..f24fefa275 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.