MCPcopy Create free account
hub / github.com/ByConity/ByConity / readImpl

Method readImpl

src/DataStreams/TTLBlockInputStream.cpp:122–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120}
121
122Block TTLBlockInputStream::readImpl()
123{
124 if (all_data_dropped)
125 return {};
126
127 auto block = children.at(0)->read();
128 for (const auto & algorithm : algorithms)
129 algorithm->execute(block);
130
131 if (!block)
132 return block;
133
134 return reorderColumns(std::move(block), header);
135}
136
137void TTLBlockInputStream::readSuffixImpl()
138{

Callers

nothing calls this directly

Calls 4

reorderColumnsFunction · 0.85
readMethod · 0.45
atMethod · 0.45
executeMethod · 0.45

Tested by

no test coverage detected