| 284 | } |
| 285 | |
| 286 | String 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 | |
| 293 | std::vector<std::pair<String, String>> JoinStepLogical::describeJoinProperties() const |
| 294 | { |
no test coverage detected