mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
Add support for additional DTrace probes.
Robert Lor
This commit is contained in:
@ -37,7 +37,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/executor/nodeSetOp.c,v 1.28 2009/01/01 17:23:42 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/executor/nodeSetOp.c,v 1.29 2009/04/02 19:14:33 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -46,6 +46,7 @@
|
||||
|
||||
#include "executor/executor.h"
|
||||
#include "executor/nodeSetOp.h"
|
||||
#include "pg_trace.h"
|
||||
#include "utils/memutils.h"
|
||||
|
||||
|
||||
@ -196,6 +197,8 @@ ExecSetOp(SetOpState *node)
|
||||
SetOp *plannode = (SetOp *) node->ps.plan;
|
||||
TupleTableSlot *resultTupleSlot = node->ps.ps_ResultTupleSlot;
|
||||
|
||||
TRACE_POSTGRESQL_EXECUTOR_SETOP((uintptr_t)node);
|
||||
|
||||
/*
|
||||
* If the previously-returned tuple needs to be returned more than once,
|
||||
* keep returning it.
|
||||
|
Reference in New Issue
Block a user