( table ReadableTable, onCondition BoolExpression)
| 296 | } |
| 297 | |
| 298 | func (t *joinTable) InnerJoinOn( |
| 299 | table ReadableTable, |
| 300 | onCondition BoolExpression) ReadableTable { |
| 301 | |
| 302 | return InnerJoinOn(t, table, onCondition) |
| 303 | } |
| 304 | |
| 305 | func (t *joinTable) LeftJoinOn( |
| 306 | table ReadableTable, |
nothing calls this directly
no test coverage detected