MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / getReadableRelationName

Method getReadableRelationName

src/Processors/QueryPlan/JoinStepLogical.cpp:286–291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284}
285
286String JoinStepLogical::getReadableRelationName() const
287{
288 if (left_table_label.empty() || right_table_label.empty())
289 return "";
290 return fmt::format("{} {} {}", left_table_label, joinTypePretty(join_operator), right_table_label);
291}
292
293std::vector<std::pair<String, String>> JoinStepLogical::describeJoinProperties() const
294{

Callers 4

buildPhysicalJoinMethod · 0.80
estimateReadRowsCountFunction · 0.80
chooseJoinOrderFunction · 0.80

Calls 3

joinTypePrettyFunction · 0.85
formatFunction · 0.50
emptyMethod · 0.45

Tested by

no test coverage detected