mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-19 15:50:25 -06:00
* fix: explicit ordering in ReleaseTasks and lock parent slots * fix: IN instead of = * fix: gen diff
28 lines
643 B
Go
28 lines
643 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.29.0
|
|
|
|
package sqlcv1
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5"
|
|
"github.com/jackc/pgx/v5/pgconn"
|
|
)
|
|
|
|
type DBTX interface {
|
|
Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)
|
|
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 {
|
|
return &Queries{}
|
|
}
|
|
|
|
type Queries struct {
|
|
}
|