1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-14 18:42:34 +03:00

Make EXPLAIN sampling smarter, to avoid excessive sampling delay.

Martijn van Oosterhout
This commit is contained in:
Bruce Momjian
2006-05-30 14:01:58 +00:00
parent 53d669e5c6
commit 87bd07d979
8 changed files with 149 additions and 54 deletions

View File

@ -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;
}