---------------------------------------------------------------- * 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(). * * -------------------------------------------------------
| 1229 | * ---------------------------------------------------------------- |
| 1230 | */ |
| 1231 | void |
| 1232 | ExecutorEnd(QueryDesc *queryDesc) |
| 1233 | { |
| 1234 | if (ExecutorEnd_hook) |
| 1235 | (*ExecutorEnd_hook) (queryDesc); |
| 1236 | else |
| 1237 | standard_ExecutorEnd(queryDesc); |
| 1238 | } |
| 1239 | |
| 1240 | void |
| 1241 | standard_ExecutorEnd(QueryDesc *queryDesc) |
no test coverage detected