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

Function ExecFunctionScanExplainEnd

src/backend/executor/nodeFunctionscan.c:647–651  ·  view source on GitHub ↗

* ExecFunctionScanExplainEnd * Called before ExecutorEnd to finish EXPLAIN ANALYZE reporting. * * The cleanup that ordinarily would occur during ExecutorEnd() needs to be * done earlier in order to report statistics to EXPLAIN ANALYZE. Note that * ExecEndFunctionScan() will be called for a second time during ExecutorEnd(). */

Source from the content-addressed store, hash-verified

645 * ExecEndFunctionScan() will be called for a second time during ExecutorEnd().
646 */
647void
648ExecFunctionScanExplainEnd(PlanState *planstate, struct StringInfoData *buf pg_attribute_unused())
649{
650 ExecEagerFreeFunctionScan((FunctionScanState *) planstate);
651} /* ExecFunctionScanExplainEnd */
652
653/* ----------------------------------------------------------------
654 * ExecEndFunctionScan

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected