(ctx context.Context, query string, args ...any)
| 44 | } |
| 45 | |
| 46 | func (e *LocalExecutor) ExecContext(ctx context.Context, query string, args ...any) (ExecResult, error) { |
| 47 | return e.db.ExecContext(ctx, query, args...) |
| 48 | } |
| 49 | |
| 50 | func (e *LocalExecutor) Query(query string, args ...any) (RowSet, error) { |
| 51 | rows, err := e.db.Query(query, args...) |
nothing calls this directly
no test coverage detected