| 230 | } |
| 231 | |
| 232 | static String formatJoinCondition(const std::vector<JoinActionRef> & predicates) |
| 233 | { |
| 234 | return fmt::format("{}", fmt::join(predicates | std::views::transform([](const auto & x) { return x.getColumnName(); }), " AND ")); |
| 235 | } |
| 236 | |
| 237 | std::string_view joinTypePretty(JoinKind join_kind, JoinStrictness strictness) |
| 238 | { |
no test coverage detected