diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-12-20 01:19:58 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-12-20 01:19:58 +0000 |
commit | c16afb4e24d8d3a3182938bfe78c72d4a73a16a0 (patch) | |
tree | c741baa1f8ff84d2fef0ad85192e5ae23f1cf635 /src | |
parent | 76898cd330297d16c67c5e7c6024440ff4343336 (diff) | |
download | postgresql-c16afb4e24d8d3a3182938bfe78c72d4a73a16a0.tar.gz postgresql-c16afb4e24d8d3a3182938bfe78c72d4a73a16a0.zip |
Whoever touched this code last doesn't seem to understand
what a header file is for :-(
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/tcop/utility.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/backend/tcop/utility.c b/src/backend/tcop/utility.c index 63236259945..e6d609ee94b 100644 --- a/src/backend/tcop/utility.c +++ b/src/backend/tcop/utility.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.75 1999/12/16 17:24:15 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.76 1999/12/20 01:19:58 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -31,10 +31,12 @@ #include "commands/rename.h" #include "commands/sequence.h" #include "commands/trigger.h" +#include "commands/user.h" #include "commands/vacuum.h" #include "commands/variable.h" #include "commands/view.h" #include "miscadmin.h" +#include "parser/parse.h" #include "rewrite/rewriteDefine.h" #include "rewrite/rewriteRemove.h" #include "tcop/utility.h" @@ -42,11 +44,6 @@ #include "utils/ps_status.h" #include "utils/syscache.h" -#include "../backend/parser/parse.h" - -void DefineUser(CreateUserStmt *stmt, CommandDest); -void AlterUser(AlterUserStmt *stmt, CommandDest); -void RemoveUser(char *username, CommandDest); /* ---------------- * CHECK_IF_ABORTED() is used to avoid doing unnecessary |