diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-26 19:29:47 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-26 19:29:47 +0000 |
commit | 7de307f96c22f36c886a09bc95bb1e23275151d3 (patch) | |
tree | 6b320dc096294e4c270e4881e6d2820be63aba65 /src/backend/commands/user.c | |
parent | e90dbd27b1efbe1d1fdb373eeccb43303f256256 (diff) | |
download | postgresql-7de307f96c22f36c886a09bc95bb1e23275151d3.tar.gz postgresql-7de307f96c22f36c886a09bc95bb1e23275151d3.zip |
Move renametrig() from tablecmds.c to trigger.c --- if we're going to
divide backend/commands by object type, let's try to pay at least
minimal attention to respecting that structure, eh? Also reorder the
contents of tablecmds.c; it seems odd to me to put ALTER commands before
creation/deletion commands.
Diffstat (limited to 'src/backend/commands/user.c')
-rw-r--r-- | src/backend/commands/user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/user.c b/src/backend/commands/user.c index eb80acbd008..d9d219edd00 100644 --- a/src/backend/commands/user.c +++ b/src/backend/commands/user.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/commands/user.c,v 1.96 2002/04/18 21:16:16 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/user.c,v 1.97 2002/04/26 19:29:47 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -646,7 +646,7 @@ CreateUser(CreateUserStmt *stmt) /* * ALTER USER */ -extern void +void AlterUser(AlterUserStmt *stmt) { Datum new_record[Natts_pg_shadow]; |