aboutsummaryrefslogtreecommitdiff
path: root/src/include/pgstat.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-06-25 23:58:58 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-06-25 23:58:58 +0000
commitc96375a39b28e54e19fa5c9c2e3dd69c44b7618c (patch)
tree7dfa38d38d9eff2666614c85bc004fc07e40d9d3 /src/include/pgstat.h
parentca1d4eb7f8dfd7310980a83083c755005a3b2a22 (diff)
downloadpostgresql-c96375a39b28e54e19fa5c9c2e3dd69c44b7618c.tar.gz
postgresql-c96375a39b28e54e19fa5c9c2e3dd69c44b7618c.zip
Fix a couple of items that should be declared Oid not int. Purely
cosmetic at the moment, but someday Oid might be 64 bits ...
Diffstat (limited to 'src/include/pgstat.h')
-rw-r--r--src/include/pgstat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/pgstat.h b/src/include/pgstat.h
index ad1239b985c..2382ceae936 100644
--- a/src/include/pgstat.h
+++ b/src/include/pgstat.h
@@ -5,7 +5,7 @@
*
* Copyright (c) 2001-2005, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/include/pgstat.h,v 1.29 2005/05/11 01:41:41 neilc Exp $
+ * $PostgreSQL: pgsql/src/include/pgstat.h,v 1.30 2005/06/25 23:58:58 tgl Exp $
* ----------
*/
#ifndef PGSTAT_H
@@ -138,7 +138,7 @@ typedef struct PgStat_MsgActivity
typedef struct PgStat_MsgTabstat
{
PgStat_MsgHdr m_hdr;
- int m_databaseid;
+ Oid m_databaseid;
int m_nentries;
int m_xact_commit;
int m_xact_rollback;