From: Peter Eisentraut Date: Mon, 13 Aug 2018 19:07:31 +0000 (+0200) Subject: Remove obsolete comment X-Git-Tag: REL_12_BETA1~1726 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ebdd21b794b49fde2010ff3d39071e02d27b404;p=postgresql Remove obsolete comment The sequence name is no longer stored in the sequence relation, since 1753b1b027035029c2a2a1649065762fafbf63f3. --- diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index cef6632840..f6210226e9 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -3140,12 +3140,6 @@ RenameRelation(RenameStmt *stmt) /* * RenameRelationInternal - change the name of a relation - * - * XXX - When renaming sequences, we don't bother to modify the - * sequence name that is stored within the sequence itself - * (this would cause problems with MVCC). In the future, - * the sequence name should probably be removed from the - * sequence, AFAIK there's no need for it to be there. */ void RenameRelationInternal(Oid myrelid, const char *newrelname, bool is_internal)