(name string, subq *Query)
| 271 | } |
| 272 | |
| 273 | func (q *Query) WithUpdate(name string, subq *Query) *Query { |
| 274 | return q._with(name, NewUpdateQuery(subq, false)) |
| 275 | } |
| 276 | |
| 277 | func (q *Query) WithDelete(name string, subq *Query) *Query { |
| 278 | return q._with(name, NewDeleteQuery(subq)) |
nothing calls this directly
no test coverage detected