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

Function ExecutorEnd

src/backend/executor/execMain.c:1231–1238  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecutorEnd * * This routine must be called at the end of execution of any * query plan * * We provide a function hook variable that lets loadable plugins * get control when ExecutorEnd is called. Such a plugin would * normally call standard_ExecutorEnd(). * * -------------------------------------------------------

Source from the content-addressed store, hash-verified

1229 * ----------------------------------------------------------------
1230 */
1231void
1232ExecutorEnd(QueryDesc *queryDesc)
1233{
1234 if (ExecutorEnd_hook)
1235 (*ExecutorEnd_hook) (queryDesc);
1236 else
1237 standard_ExecutorEnd(queryDesc);
1238}
1239
1240void
1241standard_ExecutorEnd(QueryDesc *queryDesc)

Callers 15

ProcessQueryFunction · 0.85
EndCopyToFunction · 0.85
PortalCleanupFunction · 0.85
PersistHoldablePortalFunction · 0.85
execute_sql_stringFunction · 0.85
refresh_matview_datafillFunction · 0.85
ExecCreateTableAsFunction · 0.85
ExplainOnePlanFunction · 0.85
ATExecExpandTableCTASFunction · 0.85
ATExecSetDistributedByFunction · 0.85

Calls 1

standard_ExecutorEndFunction · 0.85

Tested by

no test coverage detected