1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Remove dashes in comments that don't need them, rewrap with pgindent.

This commit is contained in:
Bruce Momjian
2001-03-22 06:16:21 +00:00
parent 9e1552607a
commit 0686d49da0
100 changed files with 4522 additions and 6023 deletions

View File

@ -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);
}