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