---------------------------------------------------------------- * ExecSortMarkPos * * Calls tuplesort to save the current position in the sorted file. * ---------------------------------------------------------------- */
| 352 | * ---------------------------------------------------------------- |
| 353 | */ |
| 354 | void |
| 355 | ExecSortMarkPos(SortState *node) |
| 356 | { |
| 357 | /* |
| 358 | * if we haven't sorted yet, just return |
| 359 | */ |
| 360 | if (!node->sort_Done) |
| 361 | return; |
| 362 | |
| 363 | tuplesort_markpos((Tuplesortstate *) node->tuplesortstate); |
| 364 | } |
| 365 | |
| 366 | /* ---------------------------------------------------------------- |
| 367 | * ExecSortRestrPos |
no test coverage detected