/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/conflicted_arg_name/postgresql/db/query.sql.go
35 строк
764 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 db import ( "context" "time" "github.com/google/uuid" ) const time2ByTime = `-- name: Time2ByTime :one SELECT time2 FROM foo WHERE time=$1 ` func (q *Queries) Time2ByTime(ctx context.Context, argTime time.Time) (time.Time, error) { row := q.db.QueryRowContext(ctx, time2ByTime, argTime) var time2 time.Time err := row.Scan(&time2) return time2, err } const uuid2ByUuid = `-- name: Uuid2ByUuid :one SELECT uuid2 FROM foo WHERE uuid=$1 ` func (q *Queries) Uuid2ByUuid(ctx context.Context, argUuid uuid.UUID) (uuid.UUID, error) { row := q.db.QueryRowContext(ctx, uuid2ByUuid, argUuid) var uuid2 uuid.UUID err := row.Scan(&uuid2) return uuid2, err }