diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-08-13 21:07:31 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-08-13 21:07:31 +0200 |
commit | 3ebdd21b794b49fde2010ff3d39071e02d27b404 (patch) | |
tree | 7be945c0dc6404c6644dd933084a1c248e89df50 /src/backend/commands/tablecmds.c | |
parent | 1e6e98f7638904b2aa4df0bd87064239ce9d8fcf (diff) | |
download | postgresql-3ebdd21b794b49fde2010ff3d39071e02d27b404.tar.gz postgresql-3ebdd21b794b49fde2010ff3d39071e02d27b404.zip |
Remove obsolete comment
The sequence name is no longer stored in the sequence relation, since
1753b1b027035029c2a2a1649065762fafbf63f3.
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r-- | src/backend/commands/tablecmds.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index cef66328407..f6210226e98 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) |