diff options
| author | Bruce Momjian <bruce@momjian.us> | 2002-12-05 04:04:51 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2002-12-05 04:04:51 +0000 |
| commit | 7816c7cb94a3e502dcd2dc10a2575d0c4dc91179 (patch) | |
| tree | f0af4a0e6189926d77726abde297f85fc56c47a5 /src/include/pgstat.h | |
| parent | caaf94107028618a78c7d69663fba943f9209384 (diff) | |
| download | postgresql-7816c7cb94a3e502dcd2dc10a2575d0c4dc91179.tar.gz | |
More cleanup of userid to be AclId rather than Oid.
Diffstat (limited to 'src/include/pgstat.h')
| -rw-r--r-- | src/include/pgstat.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/pgstat.h b/src/include/pgstat.h index 87dbfa1273..59e6a29f2b 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.10 2001/11/05 17:46:31 momjian Exp $ + * $Id: pgstat.h,v 1.11 2002/12/05 04:04:51 momjian Exp $ * ---------- */ #ifndef PGSTAT_H #define PGSTAT_H +#include "miscadmin.h" + /* ---------- * Paths for the statistics files. The %s is replaced with the * installations $PGDATA. @@ -170,7 +172,7 @@ typedef struct PgStat_MsgHdr int m_backendid; int m_procpid; Oid m_databaseid; - Oid m_userid; + AclId m_userid; } PgStat_MsgHdr; /* ---------- |
