diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-03-22 06:16:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-03-22 06:16:21 +0000 |
commit | 0686d49da0a34ad92f61f791ea1039dec5d20f41 (patch) | |
tree | 11c8f58fb4364f5904c3cbad5c7a28ccea5d4049 /src/backend/tcop/utility.c | |
parent | 9e1552607a9dc6bc23e43d46770a9063ade4f3f0 (diff) |
Remove dashes in comments that don't need them, rewrap with pgindent.
Diffstat (limited to 'src/backend/tcop/utility.c')
-rw-r--r-- | src/backend/tcop/utility.c | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/backend/tcop/utility.c b/src/backend/tcop/utility.c index 370d2d3bac7..ae6cd20a5db 100644 --- a/src/backend/tcop/utility.c +++ b/src/backend/tcop/utility.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.108 2001/03/22 03:59:48 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.109 2001/03/22 06:16:17 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -384,21 +384,21 @@ ProcessUtility(Node *parsetree, */ if (stmt->column == NULL) { - /* ---------------- - * rename relation + + /* + * rename relation * - * Note: we also rename the "type" tuple - * corresponding to the relation. - * ---------------- + * Note: we also rename the "type" tuple corresponding to + * the relation. */ renamerel(relname, /* old name */ stmt->newname); /* new name */ } else { - /* ---------------- - * rename attribute - * ---------------- + + /* + * rename attribute */ renameatt(relname, /* relname */ stmt->column, /* old att name */ @@ -923,9 +923,8 @@ ProcessUtility(Node *parsetree, break; } - /* ---------------- - * tell fe/be or whatever that we're done. - * ---------------- + /* + * tell fe/be or whatever that we're done. */ EndCommand(commandTag, dest); } |