|
9 | 9 | *
|
10 | 10 | *
|
11 | 11 | * IDENTIFICATION
|
12 |
| - * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.75 1999/12/16 17:24:15 momjian Exp $ |
| 12 | + * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.76 1999/12/20 01:19:58 tgl Exp $ |
13 | 13 | *
|
14 | 14 | *-------------------------------------------------------------------------
|
15 | 15 | */
|
|
31 | 31 | #include"commands/rename.h"
|
32 | 32 | #include"commands/sequence.h"
|
33 | 33 | #include"commands/trigger.h"
|
| 34 | +#include"commands/user.h" |
34 | 35 | #include"commands/vacuum.h"
|
35 | 36 | #include"commands/variable.h"
|
36 | 37 | #include"commands/view.h"
|
37 | 38 | #include"miscadmin.h"
|
| 39 | +#include"parser/parse.h" |
38 | 40 | #include"rewrite/rewriteDefine.h"
|
39 | 41 | #include"rewrite/rewriteRemove.h"
|
40 | 42 | #include"tcop/utility.h"
|
41 | 43 | #include"utils/acl.h"
|
42 | 44 | #include"utils/ps_status.h"
|
43 | 45 | #include"utils/syscache.h"
|
44 | 46 |
|
45 |
| -#include"../backend/parser/parse.h" |
46 |
| - |
47 |
| -voidDefineUser(CreateUserStmt*stmt,CommandDest); |
48 |
| -voidAlterUser(AlterUserStmt*stmt,CommandDest); |
49 |
| -voidRemoveUser(char*username,CommandDest); |
50 | 47 |
|
51 | 48 | /* ----------------
|
52 | 49 | *CHECK_IF_ABORTED() is used to avoid doing unnecessary
|
|