fix: explicit ordering in ReleaseTasks and lock parent slots (#2201)

* fix: explicit ordering in ReleaseTasks and lock parent slots

* fix: IN instead of =

* fix: gen diff
This commit is contained in:
abelanger5
2025-08-26 11:06:55 -04:00
committed by GitHub
parent acf7215b3f
commit f62142f74d
5 changed files with 352 additions and 277 deletions

View File

@@ -16,6 +16,7 @@ type DBTX interface {
Query(context.Context, string, ...interface{}) (pgx.Rows, error)
QueryRow(context.Context, string, ...interface{}) pgx.Row
CopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)
SendBatch(context.Context, *pgx.Batch) pgx.BatchResults
}
func New() *Queries {