Small filx on the documentation of ALTER DEFAULT PRIVILEGES
Small filx on the documentation of ALTER DEFAULT PRIVILEGES
От:
Yugo NAGATA <nagata@sraoss.co.jp>
Дата:
Hi,
Hi,
We can specify more than one privilege type in
"ALTER DEFAULT PRIVILEGES GRANT/REVOKE ON SCHEMAS",
for example,
ALTER DEFAULT PRIVILEGES GRANT USAGE,CREATE ON SCHEMAS TO PUBLIC;
However, the syntax described in the documentation looks to
be allowing only one,
GRANT { USAGE | CREATE | ALL [ PRIVILEGES ] }
ON SCHEMAS
TO { [ GROUP ] role_name | PUBLIC } [, ...] [ WITH GRANT OPTION ]
while the syntaxes for tables and sequences are described correctly.
e.g.
GRANT { { SELECT | INSERT | UPDATE | DELETE | TRUNCATE | REFERENCES | TRIGGER }
[, ...] | ALL [ PRIVILEGES ] }
ON TABLES
TO { [ GROUP ] role_name | PUBLIC } [, ...] [ WITH GRANT OPTION ]
I attached a small patch to fix the description.
Regards,
Yugo Nagata
--
Yugo NAGATA
Re: Small filx on the documentation of ALTER DEFAULT PRIVILEGES
От:
Tom Lane <tgl@sss.pgh.pa.us>
Дата:
Yugo NAGATA writes:
> We can specify more than one privilege type in
> "ALTER DEFAULT PRIVILEGES GRANT/REVOKE ON SCHEMAS",
> for example,
> ALTER DEFAULT PRIVILEGES GRANT USAGE,CREATE ON SCHEMAS TO PUBLIC;
> However, the syntax described in the documentation looks to
> be allowing only one,
> GRANT { USAGE | CREATE | ALL [ PRIVILEGES ] }
> ON SCHEMAS
> TO { [ GROUP ] role_name | PUBLIC } [, ...] [ WITH GRANT OPTION ]
> while the syntaxes for tables and sequences are described correctly.
Yup, you're right. I'll push this shortly.
regards, tom lane