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

Method marks

src/QueryPlan/ReadFromMergeTree.cpp:1817–1826  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1815}
1816
1817size_t MergeTreeDataSelectAnalysisResult::marks() const
1818{
1819 if (std::holds_alternative<std::exception_ptr>(result))
1820 std::rethrow_exception(std::get<std::exception_ptr>(result));
1821
1822 const auto & index_stats = std::get<ReadFromMergeTree::AnalysisResult>(result).index_stats;
1823 if (index_stats.empty())
1824 return 0;
1825 return index_stats.back().num_granules_after;
1826}
1827
1828}

Callers 9

selectBestProjectionFunction · 0.80
readFromPartsMethod · 0.80
selectBestProjectionFunction · 0.80
buildExecutePlanMethod · 0.80
toStringMethod · 0.80
buildExecutePlanMethod · 0.80
initializePipelineMethod · 0.80

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected