diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-06-09 15:51:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-06-09 15:51:02 +0000 |
commit | 85add42a570cdb4be2d674e62535eb54b4dcd5cf (patch) | |
tree | dbf157f4e38ff97df572bda2244d7280338bf541 /src/interfaces/python/pgmodule.c | |
parent | a672e9650abcc9a08df06dd075a884543f3d87f3 (diff) | |
download | postgresql-85add42a570cdb4be2d674e62535eb54b4dcd5cf.tar.gz postgresql-85add42a570cdb4be2d674e62535eb54b4dcd5cf.zip |
I have large database and with this DB work more users and I very need
more restriction for fretful users. The current PG allow define only
NO-CREATE-DB and NO-CREATE-USER restriction, but for some users I need
NO-CREATE-TABLE and NO-LOCK-TABLE.
This patch add to current code NOCREATETABLE and NOLOCKTABLE feature:
CREATE USER username
[ WITH
[ SYSID uid ]
[ PASSWORD 'password' ] ]
[ CREATEDB | NOCREATEDB ] [ CREATEUSER | NOCREATEUSER ]
-> [ CREATETABLE | NOCREATETABLE ] [ LOCKTABLE | NOLOCKTABLE ]
...etc.
If CREATETABLE or LOCKTABLE is not specific in CREATE USER command,
as default is set CREATETABLE or LOCKTABLE (true).
A user with NOCREATETABLE restriction can't call CREATE TABLE or
SELECT INTO commands, only create temp table is allow for him.
Karel
Diffstat (limited to 'src/interfaces/python/pgmodule.c')
0 files changed, 0 insertions, 0 deletions