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

Function ExecCustomMarkPos

src/backend/executor/nodeCustom.c:139–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137}
138
139void
140ExecCustomMarkPos(CustomScanState *node)
141{
142 if (!node->methods->MarkPosCustomScan)
143 ereport(ERROR,
144 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
145 errmsg("custom scan \"%s\" does not support MarkPos",
146 node->methods->CustomName)));
147 node->methods->MarkPosCustomScan(node);
148}
149
150void
151ExecCustomRestrPos(CustomScanState *node)

Callers 1

ExecMarkPosFunction · 0.85

Calls 2

errcodeFunction · 0.50
errmsgFunction · 0.50

Tested by

no test coverage detected