aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2015-10-15 12:20:11 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2015-10-15 12:20:11 -0300
commit817588bc2bd684b630da11ca068505dbd985de10 (patch)
tree1cfa90df3600252ab549fd53ef760e730b57c93e /src
parentaa7f9493a02f5981c09b924323f0e7a58a32f2ed (diff)
downloadpostgresql-817588bc2bd684b630da11ca068505dbd985de10.tar.gz
postgresql-817588bc2bd684b630da11ca068505dbd985de10.zip
Fix bogus comments
Author: Amit Langote
Diffstat (limited to 'src')
-rw-r--r--src/backend/commands/tablecmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index 7668c9d771f..403582ccd53 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -5673,7 +5673,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,
@@ -10376,7 +10376,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)