| 241 | } |
| 242 | |
| 243 | void CrossJoinNode::appendTable(QueryTreeNodePtr table_expression, CrossJoinNode::JoinType join_type) |
| 244 | { |
| 245 | children.push_back(std::move(table_expression)); |
| 246 | join_types.push_back(join_type); |
| 247 | } |
| 248 | |
| 249 | void CrossJoinNode::dumpTreeImpl(WriteBuffer & buffer, FormatState & format_state, size_t indent) const |
| 250 | { |
no test coverage detected