---------------------------------------------------------------- * ExecEndSort(node) * ---------------------------------------------------------------- */
| 329 | * ---------------------------------------------------------------- |
| 330 | */ |
| 331 | void |
| 332 | ExecEndSort(SortState *node) |
| 333 | { |
| 334 | SO1_printf("ExecEndSort: %s\n", |
| 335 | "shutting down sort node"); |
| 336 | |
| 337 | ExecEagerFreeSort(node); |
| 338 | |
| 339 | /* |
| 340 | * shut down the subplan |
| 341 | */ |
| 342 | ExecEndNode(outerPlanState(node)); |
| 343 | |
| 344 | SO1_printf("ExecEndSort: %s\n", |
| 345 | "sort node shutdown"); |
| 346 | } |
| 347 | |
| 348 | /* ---------------------------------------------------------------- |
| 349 | * ExecSortMarkPos |
no test coverage detected