diff options
author | Peter Eisentraut | 2003-06-27 14:45:32 +0000 |
---|---|---|
committer | Peter Eisentraut | 2003-06-27 14:45:32 +0000 |
commit | b256f2426433c56b4bea3a8102757749885b81ba (patch) | |
tree | bd2b9b75720dd850bffbf40bf3d2440b1639a904 /src/include/miscadmin.h | |
parent | 5bac7d11ddbf19688fd5da87ffbd991a1b06aa4a (diff) |
First batch of object rename commands.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 1ea326e1973..f88b9835045 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.123 2003/05/28 18:19:09 tgl Exp $ + * $Id: miscadmin.h,v 1.124 2003/06/27 14:45:31 petere Exp $ * * NOTES * some of the information in this file should be moved to @@ -192,7 +192,6 @@ extern char *VirtualHost; * POSTGRES directory path definitions. * *****************************************************************************/ -extern char *DatabaseName; extern char *DatabasePath; /* in utils/misc/database.c */ @@ -200,7 +199,6 @@ extern void GetRawDatabaseInfo(const char *name, Oid *db_id, char *path); extern char *ExpandDatabasePath(const char *path); /* now in utils/init/miscinit.c */ -extern void SetDatabaseName(const char *name); extern void SetDatabasePath(const char *path); extern char *GetUserNameFromId(AclId userid); @@ -226,8 +224,6 @@ extern char *convertstr(unsigned char *buff, int len, int dest); /* in utils/misc/superuser.c */ extern bool superuser(void); /* current user is superuser */ extern bool superuser_arg(AclId userid); /* given user is superuser */ -extern bool is_dbadmin(Oid dbid); /* current user is owner of - * database */ /***************************************************************************** |