From 87bd07d97989bafe63a029931a65512aca4ba531 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 30 May 2006 14:01:58 +0000 Subject: Make EXPLAIN sampling smarter, to avoid excessive sampling delay. Martijn van Oosterhout --- src/backend/executor/nodeBitmapAnd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/executor/nodeBitmapAnd.c') diff --git a/src/backend/executor/nodeBitmapAnd.c b/src/backend/executor/nodeBitmapAnd.c index f5914adb62b..f12fa94882f 100644 --- a/src/backend/executor/nodeBitmapAnd.c +++ b/src/backend/executor/nodeBitmapAnd.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapAnd.c,v 1.7 2006/05/23 15:21:52 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapAnd.c,v 1.8 2006/05/30 14:01:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -161,7 +161,7 @@ MultiExecBitmapAnd(BitmapAndState *node) /* must provide our own instrumentation support */ if (node->ps.instrument) - InstrStopNodeMulti(node->ps.instrument, 0 /* XXX */ ); + InstrStopNode(node->ps.instrument, 0 /* XXX */ ); return (Node *) result; } -- cgit v1.2.3