| 414 | |
| 415 | |
| 416 | ASTPtr ASTSelectQuery::arrayJoinExpressionList(bool & is_left) const |
| 417 | { |
| 418 | const ASTArrayJoin * array_join = getFirstArrayJoin(*this); |
| 419 | if (!array_join) |
| 420 | return {}; |
| 421 | |
| 422 | is_left = (array_join->kind == ASTArrayJoin::Kind::Left); |
| 423 | return array_join->expression_list; |
| 424 | } |
| 425 | |
| 426 | |
| 427 | ASTPtr ASTSelectQuery::arrayJoinExpressionList() const |
no test coverage detected