diff options
Diffstat (limited to 'src/include/commands/user.h')
-rw-r--r-- | src/include/commands/user.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/commands/user.h b/src/include/commands/user.h new file mode 100644 index 00000000000..1994b0bcd12 --- /dev/null +++ b/src/include/commands/user.h @@ -0,0 +1,17 @@ +/*------------------------------------------------------------------------- + * + * user.h-- + * + * + * + * + *------------------------------------------------------------------------- + */ +#ifndef USER_H +#define USER_H + +extern void DefineUser(CreateUserStmt *stmt); +extern void AlterUser(AlterUserStmt *stmt); +extern void RemoveUser(char* user); + +#endif /* USER_H */ |