aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeBitmapIndexscan.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-05-30 14:01:58 +0000
committerBruce Momjian <bruce@momjian.us>2006-05-30 14:01:58 +0000
commit87bd07d97989bafe63a029931a65512aca4ba531 (patch)
treef527f2a76cccc4465b1aa103847a8905b05eed42 /src/backend/executor/nodeBitmapIndexscan.c
parent53d669e5c6fb88a85a875f5a5a4a821de1f5cda5 (diff)
downloadpostgresql-87bd07d97989bafe63a029931a65512aca4ba531.tar.gz
postgresql-87bd07d97989bafe63a029931a65512aca4ba531.zip
Make EXPLAIN sampling smarter, to avoid excessive sampling delay.
Martijn van Oosterhout
Diffstat (limited to 'src/backend/executor/nodeBitmapIndexscan.c')
-rw-r--r--src/backend/executor/nodeBitmapIndexscan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeBitmapIndexscan.c b/src/backend/executor/nodeBitmapIndexscan.c
index 300edfed29d..7555b5a22ca 100644
--- a/src/backend/executor/nodeBitmapIndexscan.c
+++ b/src/backend/executor/nodeBitmapIndexscan.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapIndexscan.c,v 1.18 2006/05/23 15:21:52 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapIndexscan.c,v 1.19 2006/05/30 14:01:58 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -112,7 +112,7 @@ MultiExecBitmapIndexScan(BitmapIndexScanState *node)
/* must provide our own instrumentation support */
if (node->ss.ps.instrument)
- InstrStopNodeMulti(node->ss.ps.instrument, nTuples);
+ InstrStopNode(node->ss.ps.instrument, nTuples);
return (Node *) tbm;
}