mirror of
https://github.com/postgres/postgres.git
synced 2025-06-01 14:21:49 +03:00
Include foreign tables in information_schema.table_privileges
This appears to have been an omission in the original commit 0d692a0dc9f. All related information_schema views already include foreign tables. Reported-by: Nicolas Thauvin <nicolas.thauvin@dalibo.com>
This commit is contained in:
parent
7502f399de
commit
3ea58216de
@ -1868,7 +1868,7 @@ CREATE VIEW table_privileges AS
|
||||
) AS grantee (oid, rolname)
|
||||
|
||||
WHERE c.relnamespace = nc.oid
|
||||
AND c.relkind IN ('r', 'v', 'p')
|
||||
AND c.relkind IN ('r', 'v', 'f', 'p')
|
||||
AND c.grantee = grantee.oid
|
||||
AND c.grantor = u_grantor.oid
|
||||
AND c.prtype IN ('INSERT', 'SELECT', 'UPDATE', 'DELETE', 'TRUNCATE', 'REFERENCES', 'TRIGGER')
|
||||
|
Loading…
x
Reference in New Issue
Block a user