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

Method resolveResultVector

src/expression_evaluator/lambda_evaluator.cpp:83–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81}
82
83void ListLambdaEvaluator::resolveResultVector(const ResultSet&, MemoryManager* memoryManager) {
84 resultVector = std::make_shared<ValueVector>(expression->getDataType().copy(), memoryManager);
85 resultVector->state = children[0]->resultVector->state;
86 isResultFlat_ = children[0]->isResultFlat();
87}
88
89std::vector<idx_t> ListLambdaEvaluator::getParamIndices() {
90 const auto& paramNames = getExpression()

Callers

nothing calls this directly

Calls 3

getDataTypeMethod · 0.80
isResultFlatMethod · 0.80
copyMethod · 0.45

Tested by

no test coverage detected