]> granicus.if.org Git - postgresql/commitdiff
Add missing pgstat_count_index_scan(), per Andreas Seltenreich.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 3 Aug 2006 15:22:09 +0000 (15:22 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 3 Aug 2006 15:22:09 +0000 (15:22 +0000)
src/backend/access/gin/ginscan.c

index af3b4e80af711b47d0981600ddebe443e904a6ef..c15181b9dbc7736b8712d220c6b3ba729b5d6ded 100644 (file)
@@ -8,13 +8,14 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * 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 "access/genam.h"
 #include "access/gin.h"
+#include "pgstat.h"
 #include "utils/memutils.h"
 
 
@@ -155,6 +156,8 @@ newScanKey( IndexScanDesc scan ) {
 
        if ( so->nkeys == 0 )
                elog(ERROR, "Gin doesn't support full scan due to it's awful inefficiency");
+
+       pgstat_count_index_scan(&scan->xs_pgstat_info);
 }
 
 Datum