Commit bc8ac3ce authored by Tom Lane's avatar Tom Lane

Add missing pgstat_count_index_scan(), per Andreas Seltenreich.

parent d841cc44
...@@ -8,13 +8,14 @@ ...@@ -8,13 +8,14 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginscan.c,v 1.3 2006/07/14 14:52:16 momjian Exp $ * $PostgreSQL: pgsql/src/backend/access/gin/ginscan.c,v 1.4 2006/08/03 15:22:09 tgl Exp $
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include "postgres.h"
#include "access/genam.h" #include "access/genam.h"
#include "access/gin.h" #include "access/gin.h"
#include "pgstat.h"
#include "utils/memutils.h" #include "utils/memutils.h"
...@@ -155,6 +156,8 @@ newScanKey( IndexScanDesc scan ) { ...@@ -155,6 +156,8 @@ newScanKey( IndexScanDesc scan ) {
if ( so->nkeys == 0 ) if ( so->nkeys == 0 )
elog(ERROR, "Gin doesn't support full scan due to it's awful inefficiency"); elog(ERROR, "Gin doesn't support full scan due to it's awful inefficiency");
pgstat_count_index_scan(&scan->xs_pgstat_info);
} }
Datum Datum
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment