diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-10-22 18:29:58 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-10-22 18:29:58 +0000 |
commit | e51d0b3c37d6bf2e5303273f1186808eef55b07f (patch) | |
tree | 4061ca927dcd48965039205f5bbd4d3c56182b40 /src | |
parent | 3cf6e948445b1f8d7474573b5fa9bbcf86c50f3b (diff) | |
download | postgresql-e51d0b3c37d6bf2e5303273f1186808eef55b07f.tar.gz postgresql-e51d0b3c37d6bf2e5303273f1186808eef55b07f.zip |
datlastsysoid is an Oid, not an int4 ...
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_database.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/pg_database.h b/src/include/catalog/pg_database.h index ca89738bbfe..a535f5d2246 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.12 2000/10/22 17:55:49 pjw Exp $ + * $Id: pg_database.h,v 1.13 2000/10/22 18:29:58 tgl Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -36,7 +36,7 @@ CATALOG(pg_database) BOOTSTRAP NameData datname; int4 datdba; int4 encoding; - int4 datlastsysoid; + Oid datlastsysoid; text datpath; /* VARIABLE LENGTH FIELD */ } FormData_pg_database; |