From 7762619e95272974f90a38d8d85aafbe0e94add5 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 28 Jun 2005 05:09:14 +0000 Subject: 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. --- src/include/utils/flatfiles.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/include/utils/flatfiles.h') diff --git a/src/include/utils/flatfiles.h b/src/include/utils/flatfiles.h index 939239aa1b9..5faf35db57b 100644 --- a/src/include/utils/flatfiles.h +++ b/src/include/utils/flatfiles.h @@ -4,7 +4,7 @@ * Routines for maintaining "flat file" images of the shared catalogs. * * - * $PostgreSQL: pgsql/src/include/utils/flatfiles.h,v 1.4 2005/06/17 22:32:50 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/flatfiles.h,v 1.5 2005/06/28 05:09:13 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -14,12 +14,10 @@ #include "fmgr.h" extern void database_file_update_needed(void); -extern void group_file_update_needed(void); -extern void user_file_update_needed(void); +extern void auth_file_update_needed(void); extern char *database_getflatfilename(void); -extern char *group_getflatfilename(void); -extern char *user_getflatfilename(void); +extern char *auth_getflatfilename(void); extern void BuildFlatFiles(bool database_only); -- cgit v1.2.3