diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-09-03 12:00:00 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-09-03 12:00:00 +0000 |
commit | 69c52c8e5b92a6f7713199d749f76b62c87ed604 (patch) | |
tree | c8955449b6724d9a2787a80f52b3dc109f799c5b | |
parent | daac2d0ce33aa4fa6450ae98fe14727b5f48659b (diff) | |
download | postgresql-69c52c8e5b92a6f7713199d749f76b62c87ed604.tar.gz postgresql-69c52c8e5b92a6f7713199d749f76b62c87ed604.zip |
Put pgstat internal files into $PGDATA/global.
-rw-r--r-- | src/include/pgstat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/pgstat.h b/src/include/pgstat.h index 646cc27e770..0a566e8582e 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -5,7 +5,7 @@ * * Copyright (c) 2001, PostgreSQL Global Development Group * - * $Id: pgstat.h,v 1.6 2001/08/05 02:06:50 tgl Exp $ + * $Id: pgstat.h,v 1.7 2001/09/03 12:00:00 petere Exp $ * ---------- */ #ifndef PGSTAT_H @@ -16,8 +16,8 @@ * installations $PGDATA. * ---------- */ -#define PGSTAT_STAT_FILENAME "%s/pgstat.stat" -#define PGSTAT_STAT_TMPFILE "%s/pgstat.tmp.%d" +#define PGSTAT_STAT_FILENAME "%s/global/pgstat.stat" +#define PGSTAT_STAT_TMPFILE "%s/global/pgstat.tmp.%d" /* ---------- * Timer definitions. |