diff options
Diffstat (limited to 'src/include/catalog/pg_database.h')
| -rw-r--r-- | src/include/catalog/pg_database.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/include/catalog/pg_database.h b/src/include/catalog/pg_database.h index 10015c7cc6..ef68094152 100644 --- a/src/include/catalog/pg_database.h +++ b/src/include/catalog/pg_database.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_database.h,v 1.5 1997/09/08 02:35:04 momjian Exp $ + * $Id: pg_database.h,v 1.6 1998/08/24 01:14:17 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -34,9 +34,9 @@ CATALOG(pg_database) BOOTSTRAP { NameData datname; int4 datdba; + int4 encoding; text datpath; /* VARIABLE LENGTH FIELD */ } FormData_pg_database; - /* ---------------- * Form_pg_database corresponds to a pointer to a tuple with * the format of pg_database relation. @@ -48,10 +48,9 @@ typedef FormData_pg_database *Form_pg_database; * compiler constants for pg_database * ---------------- */ -#define Natts_pg_database 3 +#define Natts_pg_database 4 #define Anum_pg_database_datname 1 #define Anum_pg_database_datdba 2 -#define Anum_pg_database_datpath 3 - - +#define Anum_pg_database_encoding 3 +#define Anum_pg_database_datpath 4 #endif /* PG_DATABASE_H */ |
