| 801 | } |
| 802 | |
| 803 | type deleteStatementImpl struct { |
| 804 | table WritableTable |
| 805 | where BoolExpression |
| 806 | order *listClause |
| 807 | limit int64 |
| 808 | comment string |
| 809 | } |
| 810 | |
| 811 | func (d *deleteStatementImpl) Where(expression BoolExpression) DeleteStatement { |
| 812 | d.where = expression |
nothing calls this directly
no outgoing calls
no test coverage detected