diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-03-02 18:37:52 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-03-02 18:37:52 +0000 |
commit | b95c05c9c15c9aefb52c66ac84560f078f1a0977 (patch) | |
tree | 9ec5705fdf0b54c3c65f6dbb9eef594c5a17ffc9 | |
parent | 24262be5f980acc3afde3acc6fc663490b20f740 (diff) | |
download | postgresql-b95c05c9c15c9aefb52c66ac84560f078f1a0977.tar.gz postgresql-b95c05c9c15c9aefb52c66ac84560f078f1a0977.zip |
Fix sizeof(Oid) in PGSTAT_NUM_TABPURGE. (Actually done in previous commit.)
-rw-r--r-- | src/include/pgstat.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/pgstat.h b/src/include/pgstat.h index a5402cee608..08e635a1afc 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -5,7 +5,7 @@ * * Copyright (c) 2001-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/pgstat.h,v 1.19 2004/03/02 18:35:58 momjian Exp $ + * $PostgreSQL: pgsql/src/include/pgstat.h,v 1.20 2004/03/02 18:37:52 momjian Exp $ * ---------- */ #ifndef PGSTAT_H @@ -69,8 +69,7 @@ /* ---------- - * The initial size hints for the hash tables used in the - * collector. + * The initial size hints for the hash tables used in the collector. * ---------- */ #define PGSTAT_DB_HASH_SIZE 16 |