diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index e33d73d..636b3e5 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -285,10 +285,11 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE . Comments for the copied column and constraint definitions will only be diff --git a/src/backend/commands/comment.c b/src/backend/commands/comment.c index 335d226..ce243ea 100644 --- a/src/backend/commands/comment.c +++ b/src/backend/commands/comment.c @@ -463,7 +463,7 @@ DeleteSharedComments(Oid oid, Oid classoid) } /* - * GetComment -- get the comment for a object, or null if not found. + * GetComment -- get the comment for an object, or null if not found. */ char * GetComment(Oid oid, Oid classoid, int32 subid) diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index dded36b..cf77cce 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -1571,7 +1571,7 @@ MergeAttributes(List *schema, List *supers, bool istemp, } } - /* error is conflicting comments */ + /* Raise an error if we found conflicting comments. */ if (have_bogus_comments) { foreach(entry, schema)