diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-10-15 12:20:15 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-10-15 12:20:15 -0300 |
commit | 54e07be2dfd314a64dc2ce03a6a7f59cac1c8a13 (patch) | |
tree | 9dcf3c17f6e04d9237b8ed6fd55260f3cdee458e | |
parent | 41179e7ab328a12870fed942768a89dbe8742bf1 (diff) | |
download | postgresql-54e07be2dfd314a64dc2ce03a6a7f59cac1c8a13.tar.gz postgresql-54e07be2dfd314a64dc2ce03a6a7f59cac1c8a13.zip |
Fix bogus comments
Author: Amit Langote
-rw-r--r-- | src/backend/commands/tablecmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 5dfdb8dd9ae..3ed9c380fc2 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -5655,7 +5655,7 @@ ATPrepDropColumn(List **wqueue, Relation rel, bool recurse, bool recursing, } /* - * Return value is that of the dropped column. + * Return value is the address of the dropped column. */ static ObjectAddress ATExecDropColumn(List **wqueue, Relation rel, const char *colName, @@ -10358,7 +10358,7 @@ MergeConstraintsIntoExisting(Relation child_rel, Relation parent_rel) * coninhcount and conislocal for inherited constraints are adjusted in * exactly the same way. * - * Return value is the OID of the relation that is no longer parent. + * Return value is the address of the relation that is no longer parent. */ static ObjectAddress ATExecDropInherit(Relation rel, RangeVar *parent, LOCKMODE lockmode) |