diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/catversion.h | 4 | ||||
-rw-r--r-- | src/include/catalog/pg_proc.h | 6 | ||||
-rw-r--r-- | src/include/libpq/hba.h | 11 | ||||
-rw-r--r-- | src/include/miscadmin.h | 5 |
4 files changed, 11 insertions, 15 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index e4f6a74ea34..ca44b24b2c4 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.254 2005/02/25 16:13:29 teodor Exp $ + * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.255 2005/02/26 18:43:34 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200502251 +#define CATALOG_VERSION_NO 200502261 #endif diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index 16867cb992c..e456e96bba6 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.349 2004/12/31 22:03:25 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.350 2005/02/26 18:43:34 tgl Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki @@ -2133,8 +2133,8 @@ DESCR("matches LIKE expression, case-insensitive"); DATA(insert OID = 1661 ( bpcharicnlike PGNSP PGUID 12 f f t f i 2 16 "1042 25" _null_ texticnlike - _null_ )); DESCR("does not match LIKE expression, case-insensitive"); -DATA(insert OID = 1689 ( update_pg_pwd_and_pg_group PGNSP PGUID 12 f f t f v 0 2279 "" _null_ update_pg_pwd_and_pg_group - _null_ )); -DESCR("update pg_pwd and pg_group files"); +DATA(insert OID = 1689 ( flatfile_update_trigger PGNSP PGUID 12 f f t f v 0 2279 "" _null_ flatfile_update_trigger - _null_ )); +DESCR("update flat-file copy of a shared catalog"); /* Oracle Compatibility Related Functions - By Edmund Mergl <E.Mergl@bawue.de> */ DATA(insert OID = 868 ( strpos PGNSP PGUID 12 f f t f i 2 23 "25 25" _null_ textpos - _null_ )); diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index a284edf3967..0656e6a4e82 100644 --- a/src/include/libpq/hba.h +++ b/src/include/libpq/hba.h @@ -4,19 +4,16 @@ * Interface to hba.c * * - * $PostgreSQL: pgsql/src/include/libpq/hba.h,v 1.35 2004/02/02 16:58:30 neilc Exp $ + * $PostgreSQL: pgsql/src/include/libpq/hba.h,v 1.36 2005/02/26 18:43:34 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef HBA_H #define HBA_H -#ifndef WIN32 -#include <netinet/in.h> -#endif - #include "nodes/pg_list.h" + typedef enum UserAuth { uaReject, @@ -41,5 +38,7 @@ extern void load_user(void); extern void load_group(void); extern int hba_getauthmethod(hbaPort *port); extern int authident(hbaPort *port); +extern bool read_pg_database_line(FILE *fp, char *dbname, + Oid *dboid, Oid *dbtablespace); -#endif +#endif /* HBA_H */ diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index e5333977c09..3e9b7d912a4 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -13,7 +13,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.174 2004/12/31 22:03:19 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.175 2005/02/26 18:43:34 tgl Exp $ * * NOTES * some of the information in this file should be moved to other files. @@ -225,9 +225,6 @@ extern void check_stack_depth(void); extern char *DatabasePath; -/* in utils/misc/database.c */ -extern void GetRawDatabaseInfo(const char *name, Oid *db_id, Oid *db_tablespace); - /* now in utils/init/miscinit.c */ extern void SetDatabasePath(const char *path); |