Join represents table join.
| 73 | |
| 74 | // Join represents table join. |
| 75 | type Join struct { |
| 76 | node |
| 77 | |
| 78 | // Left table can be TableSource or JoinNode. |
| 79 | Left ResultSetNode |
| 80 | // Right table can be TableSource or JoinNode or nil. |
| 81 | Right ResultSetNode |
| 82 | // Tp represents join type. |
| 83 | Tp JoinType |
| 84 | // On represents join on condition. |
| 85 | On *OnCondition |
| 86 | // Using represents join using clause. |
| 87 | Using []*ColumnName |
| 88 | // NaturalJoin represents join is natural join. |
| 89 | NaturalJoin bool |
| 90 | // StraightJoin represents a straight join. |
| 91 | StraightJoin bool |
| 92 | ExplicitParens bool |
| 93 | } |
| 94 | |
| 95 | func (*Join) resultSet() {} |
| 96 |
nothing calls this directly
no outgoing calls
no test coverage detected