diff options
| author | Bruce Momjian <bruce@momjian.us> | 1999-12-16 17:24:19 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1999-12-16 17:24:19 +0000 |
| commit | 99b8f8451170a5c2fc130426952819502c10aea9 (patch) | |
| tree | 944f4d4ea987f31cdf63ea71abf36e9d670c209a /src/include/commands | |
| parent | 4cb1fb6f59502e834c3c1de8e626b4c68c0d1711 (diff) | |
| download | postgresql-99b8f8451170a5c2fc130426952819502c10aea9.tar.gz | |
Here's the Create/Alter/Drop Group stuff that's been really overdue. I
didn't have time for documentation yet, but I'll write some. There are
still some things to work out what happens when you alter or drop users,
but the group stuff in and by itself is done.
--
Peter Eisentraut Sernanders väg 10:115
Diffstat (limited to 'src/include/commands')
| -rw-r--r-- | src/include/commands/user.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/commands/user.h b/src/include/commands/user.h index 3830c11045..912a5a2ea7 100644 --- a/src/include/commands/user.h +++ b/src/include/commands/user.h @@ -17,4 +17,8 @@ extern void DefineUser(CreateUserStmt *stmt, CommandDest); extern void AlterUser(AlterUserStmt *stmt, CommandDest); extern void RemoveUser(char *user, CommandDest); +extern void CreateGroup(CreateGroupStmt *stmt, CommandDest dest); +extern void AlterGroup(AlterGroupStmt *stmt, CommandDest dest); +extern void DropGroup(DropGroupStmt *stmt, CommandDest dest); + #endif /* USER_H */ |
