Join expressions are pseudo readable tables.
| 200 | |
| 201 | // Join expressions are pseudo readable tables. |
| 202 | type joinTable struct { |
| 203 | lhs ReadableTable |
| 204 | rhs ReadableTable |
| 205 | join_type joinType |
| 206 | onCondition BoolExpression |
| 207 | } |
| 208 | |
| 209 | func newJoinTable( |
| 210 | lhs ReadableTable, |
nothing calls this directly
no outgoing calls
no test coverage detected