MCPcopy Create free account
hub / github.com/bytedance/bolt / getNamedVectorSerde

Function getNamedVectorSerde

bolt/vector/VectorStream.cpp:180–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178}
179
180VectorSerde* getNamedVectorSerde(VectorSerde::Kind kind) {
181 auto& namedSerdeMap = getNamedVectorSerdeImpl();
182 auto it = namedSerdeMap.find(kind);
183 BOLT_CHECK(
184 it != namedSerdeMap.end(),
185 "Named vector serde '{}' is not registered.",
186 kind);
187 return it->second.get();
188}
189
190void VectorStreamGroup::createStreamTree(
191 RowTypePtr type,

Callers 5

TESTFunction · 0.85
SpillWriterMethod · 0.85
SpillReadFileBaseMethod · 0.85

Calls 3

findMethod · 0.45
endMethod · 0.45
getMethod · 0.45

Tested by 1

TESTFunction · 0.68