diff options
Diffstat (limited to 'src/include/pgstat.h')
-rw-r--r-- | src/include/pgstat.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/pgstat.h b/src/include/pgstat.h index 6dcdcb1ecb5..533c2e44f56 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -5,12 +5,14 @@ * * Copyright (c) 2001, PostgreSQL Global Development Group * - * $Id: pgstat.h,v 1.12 2003/01/09 18:00:24 tgl Exp $ + * $Id: pgstat.h,v 1.13 2003/03/20 03:34:56 momjian Exp $ * ---------- */ #ifndef PGSTAT_H #define PGSTAT_H +#include "utils/nabstime.h" + /* ---------- * Paths for the statistics files. The %s is replaced with the * installations $PGDATA. @@ -111,6 +113,8 @@ typedef struct PgStat_StatBeEntry Oid userid; int procpid; char activity[PGSTAT_ACTIVITY_SIZE]; + AbsoluteTime activity_start_sec; + int activity_start_usec; } PgStat_StatBeEntry; |