diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-09-02 00:22:16 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-09-02 00:22:16 +0000 |
commit | e814e4bfe53159a3afb5b6960285b651f32118f3 (patch) | |
tree | 8d80a06f53b89429eee31ee9fcf9d265f7e7c107 /src | |
parent | e41acf402962652bf7b913c05751522784f547c0 (diff) | |
download | postgresql-e814e4bfe53159a3afb5b6960285b651f32118f3.tar.gz postgresql-e814e4bfe53159a3afb5b6960285b651f32118f3.zip |
Remove obsolete comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/commands/schemacmds.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/commands/schemacmds.c b/src/backend/commands/schemacmds.c index 8a3d02d100b..b4e1cd77983 100644 --- a/src/backend/commands/schemacmds.c +++ b/src/backend/commands/schemacmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/schemacmds.c,v 1.24 2004/08/29 05:06:41 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/commands/schemacmds.c,v 1.25 2004/09/02 00:22:16 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -217,10 +217,6 @@ RemoveSchema(List *names, DropBehavior behavior) /* * Do the deletion. Objects contained in the schema are removed by * means of their dependency links to the schema. - * - * XXX currently, index opclasses don't have creation/deletion commands, - * so they will not get removed when the containing schema is removed. - * This is annoying but not fatal. */ object.classId = get_system_catalog_relid(NamespaceRelationName); object.objectId = namespaceId; |