| 148 | } |
| 149 | |
| 150 | void |
| 151 | ExecCustomRestrPos(CustomScanState *node) |
| 152 | { |
| 153 | if (!node->methods->RestrPosCustomScan) |
| 154 | ereport(ERROR, |
| 155 | (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), |
| 156 | errmsg("custom scan \"%s\" does not support MarkPos", |
| 157 | node->methods->CustomName))); |
| 158 | node->methods->RestrPosCustomScan(node); |
| 159 | } |
| 160 | |
| 161 | void |
| 162 | ExecCustomScanEstimate(CustomScanState *node, ParallelContext *pcxt) |
no test coverage detected