| 179 | |
| 180 | |
| 181 | void |
| 182 | ExecReScanUnique(UniqueState *node) |
| 183 | { |
| 184 | /* must clear result tuple so first input tuple is returned */ |
| 185 | ExecClearTuple(node->ps.ps_ResultTupleSlot); |
| 186 | |
| 187 | /* |
| 188 | * if chgParam of subnode is not null then plan will be re-scanned by |
| 189 | * first ExecProcNode. |
| 190 | */ |
| 191 | if (node->ps.lefttree->chgParam == NULL) |
| 192 | ExecReScan(node->ps.lefttree); |
| 193 | } |
no test coverage detected