emptyExecResult is an ExecResult that reports 0 rows affected — sufficient for these tests, which assert lifecycle log presence not row-count math.
| 78 | |
| 79 | // emptyExecResult is an ExecResult that reports 0 rows affected — sufficient |
| 80 | // for these tests, which assert lifecycle log presence not row-count math. |
| 81 | type emptyExecResult struct{} |
| 82 | |
| 83 | func (emptyExecResult) RowsAffected() (int64, error) { return 0, nil } |
nothing calls this directly
no outgoing calls
no test coverage detected