/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/join_table_name/sqlite/go/query.sql.go
29 строк
526 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 tableName = `-- name: TableName :one SELECT foo.id FROM foo JOIN bar ON foo.bar = bar.id WHERE bar.id = ? AND foo.id = ? ` type TableNameParams struct { ID int64 ID_2 int64 } func (q *Queries) TableName(ctx context.Context, arg TableNameParams) (int64, error) { row := q.db.QueryRowContext(ctx, tableName, arg.ID, arg.ID_2) var id int64 err := row.Scan(&id) return id, err }