Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / include / commands / user.h
blob9ed82460ba71c8747c0e38daa8142f647766f5b3
1 /*-------------------------------------------------------------------------
3 * user.h
4 * Commands for manipulating roles (formerly called users).
7 * $PostgreSQL$
9 *-------------------------------------------------------------------------
11 #ifndef USER_H
12 #define USER_H
14 #include "nodes/parsenodes.h"
17 extern void CreateRole(CreateRoleStmt *stmt);
18 extern void AlterRole(AlterRoleStmt *stmt);
19 extern void AlterRoleSet(AlterRoleSetStmt *stmt);
20 extern void DropRole(DropRoleStmt *stmt);
21 extern void GrantRole(GrantRoleStmt *stmt);
22 extern void RenameRole(const char *oldname, const char *newname);
23 extern void DropOwnedObjects(DropOwnedStmt *stmt);
24 extern void ReassignOwnedObjects(ReassignOwnedStmt *stmt);
26 #endif /* USER_H */