Method
Exec
(ctx context.Context, sql string, args ...any)
Source from the content-addressed store, hash-verified
| 199 | } |
| 200 | |
| 201 | func (e *Executor) Exec(ctx context.Context, sql string, args ...any) error { |
| 202 | _, err := e.dbtx.ExecContext(ctx, sql, args...) |
| 203 | return interpretError(err) |
| 204 | } |
| 205 | |
| 206 | func (e *Executor) IndexDropIfExists(ctx context.Context, params *riverdriver.IndexDropIfExistsParams) error { |
| 207 | var maybeSchema string |
Callers
nothing calls this directly
Implementers 3
Executorriverdriver/riverpgxv5/river_pgx_v5_dr Executorriverdriver/riverdatabasesql/river_dat Executorriverdriver/riversqlite/river_sqlite_d
Tested by
no test coverage detected