MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / initLocalStateInternal

Method initLocalStateInternal

src/processor/operator/unwind_dedup.cpp:15–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13namespace processor {
14
15void UnwindDedup::initLocalStateInternal(ResultSet* resultSet, ExecutionContext* /*context*/) {
16 keyVectors.clear();
17 keyVectors.reserve(keyDataPositions.size());
18 for (auto& keyDataPos : keyDataPositions) {
19 keyVectors.push_back(resultSet->getValueVector(keyDataPos).get());
20 }
21}
22
23bool UnwindDedup::getNextTuplesInternal(ExecutionContext* context) {
24 while (true) {

Callers

nothing calls this directly

Calls 6

clearMethod · 0.45
reserveMethod · 0.45
sizeMethod · 0.45
push_backMethod · 0.45
getMethod · 0.45
getValueVectorMethod · 0.45

Tested by

no test coverage detected