(join string, params ...interface{})
| 619 | } |
| 620 | |
| 621 | func (q *Query) Join(join string, params ...interface{}) *Query { |
| 622 | j := &joinQuery{ |
| 623 | join: SafeQuery(join, params...), |
| 624 | } |
| 625 | q.joins = append(q.joins, j) |
| 626 | q.joinAppendOn = j.AppendOn |
| 627 | return q |
| 628 | } |
| 629 | |
| 630 | // JoinOn appends join condition to the last join. |
| 631 | func (q *Query) JoinOn(condition string, params ...interface{}) *Query { |
nothing calls this directly
no test coverage detected