/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/update_cte/stdlib/go/query.sql.go
72 строки
1 KB
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" "database/sql" "time" ) const updateCode = `-- name: UpdateCode :one WITH cc AS ( UPDATE td3.codes SET created_by = $1, updated_by = $1, code = $2, hash = $3, is_private = false RETURNING hash ) UPDATE td3.test_codes SET created_by = $1, updated_by = $1, test_id = $4, code_hash = cc.hash FROM cc RETURNING hash, id, ts_created, ts_updated, created_by, updated_by, test_id, code_hash ` type UpdateCodeParams struct { CreatedBy string Code sql.NullString Hash sql.NullString TestID int32 } type UpdateCodeRow struct { Hash sql.NullString ID int32 TsCreated time.Time TsUpdated time.Time CreatedBy string UpdatedBy string TestID int32 CodeHash string } func (q *Queries) UpdateCode(ctx context.Context, arg UpdateCodeParams) (UpdateCodeRow, error) { row := q.db.QueryRowContext(ctx, updateCode, arg.CreatedBy, arg.Code, arg.Hash, arg.TestID, ) var i UpdateCodeRow err := row.Scan( &i.Hash, &i.ID, &i.TsCreated, &i.TsUpdated, &i.CreatedBy, &i.UpdatedBy, &i.TestID, &i.CodeHash, ) return i, err }