(val any)
| 75 | } |
| 76 | |
| 77 | func (b *sqlExprBuilder) writeValue(val any) error { |
| 78 | b.writeString("?") |
| 79 | b.args = append(b.args, val) |
| 80 | return nil |
| 81 | } |
| 82 | |
| 83 | func (b *sqlExprBuilder) writeSubquery(sub *Subquery) error { |
| 84 | // We construct a Query that combines the parent Query's contextual info with that of the Subquery. |
no test coverage detected