---------------------------------------------------------------- * ExecutorFinish * * This routine must be called after the last ExecutorRun call. * It performs cleanup such as firing AFTER triggers. It is * separate from ExecutorEnd because EXPLAIN ANALYZE needs to * include these actions in the total runtime. * * We provide a function hook variable that lets loadable plugins * g
| 1141 | * ---------------------------------------------------------------- |
| 1142 | */ |
| 1143 | void |
| 1144 | ExecutorFinish(QueryDesc *queryDesc) |
| 1145 | { |
| 1146 | if (ExecutorFinish_hook) |
| 1147 | (*ExecutorFinish_hook) (queryDesc); |
| 1148 | else |
| 1149 | standard_ExecutorFinish(queryDesc); |
| 1150 | } |
| 1151 | |
| 1152 | void |
| 1153 | standard_ExecutorFinish(QueryDesc *queryDesc) |
no test coverage detected