(ctx context.Context, params *riverdriver.IndexExistsParams)
| 214 | } |
| 215 | |
| 216 | func (e *Executor) IndexExists(ctx context.Context, params *riverdriver.IndexExistsParams) (bool, error) { |
| 217 | exists, err := dbsqlc.New().IndexExists(schemaTemplateParam(ctx, params.Schema), e.dbtx, params.Index) |
| 218 | return exists, interpretError(err) |
| 219 | } |
| 220 | |
| 221 | func (e *Executor) IndexReindex(ctx context.Context, params *riverdriver.IndexReindexParams) error { |
| 222 | var maybeSchema string |
no test coverage detected