/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/jsonb/pgx/go/query.sql.go
50 строк
716 B
Kyle Gray
Release 1.31.1 (#4407)
22 апр 2026, 17:52
Не верифицирован
22 апр 2026, 17:52
a95e91d
Код
Авторство
О чём код?
// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.31.1 // source: query.sql package querytest import ( "context" ) const insertFoo = `-- name: InsertFoo :exec INSERT INTO foo ( a, b, c, d ) VALUES ( $1, $2, $3, $4 ) RETURNING a, b, c, d ` type InsertFooParams struct { A []byte B []byte C []byte D []byte } func (q *Queries) InsertFoo(ctx context.Context, arg InsertFooParams) error { _, err := q.db.Exec(ctx, insertFoo, arg.A, arg.B, arg.C, arg.D, ) return err } const selectFoo = `-- name: SelectFoo :exec SELECT a, b, c, d FROM foo ` func (q *Queries) SelectFoo(ctx context.Context) error { _, err := q.db.Exec(ctx, selectFoo) return err }