From: | Adam Haberlach <adam(at)newsnipple(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Out of date security docs |
Date: | 2001-03-28 00:53:26 |
Message-ID: | 20010327165326.C31774@newsnipple.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
This seems pretty out-of-date, since we seem to have had a 'CREATE GROUP' command
for as long as I can remember -- are there any more accurate docs out there?
How would I go about updating them?
http://www.postgresql.org/users-lounge/docs/7.0/postgres/security17760.htm
/***/
Currently, there is no easy interface to set up user groups. You have to
explicitly insert/update the pg_group table. For example:
jolly=> insert into pg_group (groname, grosysid, grolist)
jolly=> values ('posthackers', '1234', '{5443, 8261}');
INSERT 548224
jolly=> grant insert on foo to group posthackers;
CHANGE
jolly=>
/***/
--
Adam Haberlach |
adam(at)newsnipple(dot)com | http://youlook.org
http://www.newsnipple.com |
'88 EX500 '00 >^< |
From | Date | Subject | |
---|---|---|---|
Next Message | Marko Kreen | 2001-03-28 00:57:18 | Re: fmgr, C , and character arguments |
Previous Message | Joel Dudley | 2001-03-27 22:45:17 | fmgr, C , and character arguments |