Quick patch for correct pg_stat_database columns

Started by Greg Sabino Mullaneabout 17 years ago2 messages
#1Greg Sabino Mullane
greg@turnstep.com
1 attachment(s)

Add in the "tup_fetched" column.

--
Greg Sabino Mullane

Attachments:

pg_stat_database.doc.patchtext/x-patch; name=pg_stat_database.doc.patchDownload
Index: doc/src/sgml/monitoring.sgml
===================================================================
RCS file: /projects/cvsroot/pgsql/doc/src/sgml/monitoring.sgml,v
retrieving revision 1.62
diff -c -r1.62 monitoring.sgml
*** doc/src/sgml/monitoring.sgml	15 Aug 2008 08:37:41 -0000	1.62
--- doc/src/sgml/monitoring.sgml	11 Nov 2008 19:12:14 -0000
***************
*** 267,273 ****
        number of transactions committed and rolled back in that database,
        total disk blocks read, total buffer hits (i.e., block
        read requests avoided by finding the block already in buffer cache),
!       number of rows returned, inserted, updated and deleted.
       </entry>
       </row>
  
--- 267,273 ----
        number of transactions committed and rolled back in that database,
        total disk blocks read, total buffer hits (i.e., block
        read requests avoided by finding the block already in buffer cache),
!       number of rows returned, fetched, inserted, updated and deleted.
       </entry>
       </row>
  
#2Magnus Hagander
magnus@hagander.net
In reply to: Greg Sabino Mullane (#1)
Re: Quick patch for correct pg_stat_database columns

Greg Sabino Mullane wrote:

Add in the "tup_fetched" column.

Applied, thanks.

//Magnus