(ctx context.Context, params *riverdriver.JobInsertFullManyParams)
| 625 | } |
| 626 | |
| 627 | func (e *Executor) JobInsertFullMany(ctx context.Context, params *riverdriver.JobInsertFullManyParams) ([]*rivertype.JobRow, error) { |
| 628 | jobsParam, err := sqliteJobInsertFullManyJobsParam(params.Jobs) |
| 629 | if err != nil { |
| 630 | return nil, err |
| 631 | } |
| 632 | |
| 633 | jobs, err := dbsqlc.New().JobInsertFullMany(schemaTemplateParam(ctx, params.Schema), e.dbtx, jobsParam) |
| 634 | if err != nil { |
| 635 | return nil, interpretError(err) |
| 636 | } |
| 637 | return sliceutil.MapError(jobs, jobRowFromInternal) |
| 638 | } |
| 639 | |
| 640 | func (e *Executor) JobKindList(ctx context.Context, params *riverdriver.JobKindListParams) ([]string, error) { |
| 641 | exclude := params.Exclude |
nothing calls this directly
no test coverage detected