From c96375a39b28e54e19fa5c9c2e3dd69c44b7618c Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 25 Jun 2005 23:58:58 +0000 Subject: Fix a couple of items that should be declared Oid not int. Purely cosmetic at the moment, but someday Oid might be 64 bits ... --- src/include/pgstat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/pgstat.h') 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; -- cgit v1.2.3