diff options
Diffstat (limited to 'src/include/catalog/pg_database.h')
-rw-r--r-- | src/include/catalog/pg_database.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/include/catalog/pg_database.h b/src/include/catalog/pg_database.h index 99d4217d3e0..27acca85f44 100644 --- a/src/include/catalog/pg_database.h +++ b/src/include/catalog/pg_database.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_database.h,v 1.10 2000/10/16 14:52:26 vadim Exp $ + * $Id: pg_database.h,v 1.11 2000/10/20 11:01:17 vadim Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -61,4 +61,12 @@ DESCR(""); #define TemplateDbOid 1 +/* Just to mark OID as used for unused_oid script -:) */ +#define DATAMARKOID(x) + +DATAMARKOID( = 2) +#define RecoveryDb 2 + +#undef DATAMARKOID + #endif /* PG_DATABASE_H */ |