MCPcopy Create free account
hub / github.com/apache/cloudberry / ExecCustomRestrPos

Function ExecCustomRestrPos

src/backend/executor/nodeCustom.c:150–159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148}
149
150void
151ExecCustomRestrPos(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
161void
162ExecCustomScanEstimate(CustomScanState *node, ParallelContext *pcxt)

Callers 1

ExecRestrPosFunction · 0.85

Calls 2

errcodeFunction · 0.50
errmsgFunction · 0.50

Tested by

no test coverage detected