mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Replace pg_shadow and pg_group by new role-capable catalogs pg_authid
and pg_auth_members. There are still many loose ends to finish in this patch (no documentation, no regression tests, no pg_dump support for instance). But I'm going to commit it now anyway so that Alvaro can make some progress on shared dependencies. The catalog changes should be pretty much done.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/nodes/readfuncs.c,v 1.179 2005/06/26 22:05:37 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/nodes/readfuncs.c,v 1.180 2005/06/28 05:08:57 tgl Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Path and Plan nodes do not have any readfuncs support, because we
|
||||
@ -917,7 +917,7 @@ _readRangeTblEntry(void)
|
||||
READ_BOOL_FIELD(inh);
|
||||
READ_BOOL_FIELD(inFromCl);
|
||||
READ_UINT_FIELD(requiredPerms);
|
||||
READ_UINT_FIELD(checkAsUser);
|
||||
READ_OID_FIELD(checkAsUser);
|
||||
|
||||
READ_DONE();
|
||||
}
|
||||
|
Reference in New Issue
Block a user