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

Function RFFillTupleValues

src/backend/executor/nodeRuntimeFilter.c:315–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

313}
314
315static void
316RFFillTupleValues(RuntimeFilterState *rfstate, List *values)
317{
318 int idx = 0;
319 ListCell *lc;
320
321 foreach(lc, values)
322 {
323 Datum *dp = (Datum *) lfirst(lc);
324
325 rfstate->value_buf[idx] = *dp;
326 idx++;
327 }
328}

Callers 1

RFAddTupleValuesFunction · 0.85

Calls 1

foreachFunction · 0.50

Tested by

no test coverage detected