| 13 | ) |
| 14 | |
| 15 | type recordingQueryExecutor struct { |
| 16 | noopProfiling |
| 17 | query string |
| 18 | args []any |
| 19 | rowSet RowSet |
| 20 | queryError error |
| 21 | } |
| 22 | |
| 23 | func (e *recordingQueryExecutor) QueryContext(_ context.Context, query string, args ...any) (RowSet, error) { |
| 24 | e.query = query |
nothing calls this directly
no outgoing calls
no test coverage detected