MCPcopy Create free account
hub / github.com/apache/cloudberry / ExecProcNodeInstr

Function ExecProcNodeInstr

src/backend/executor/execProcnode.c:689–701  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

687 */
688#if 0
689static TupleTableSlot *
690ExecProcNodeInstr(PlanState *node)
691{
692 TupleTableSlot *result;
693
694 InstrStartNode(node->instrument);
695
696 result = node->ExecProcNodeReal(node);
697
698 InstrStopNode(node->instrument, TupIsNull(result) ? 0.0 : 1.0);
699
700 return result;
701}
702#endif
703
704/* ----------------------------------------------------------------

Callers

nothing calls this directly

Calls 2

InstrStartNodeFunction · 0.85
InstrStopNodeFunction · 0.85

Tested by

no test coverage detected