/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/ddl_comment/postgresql/stdlib/go/models.go
59 строк
1012 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 package querytest import ( "database/sql" "database/sql/driver" "fmt" ) // Enum comment type FooBat string const ( FooBatBat FooBat = "bat" ) func (e *FooBat) Scan(src interface{}) error { switch s := src.(type) { case []byte: *e = FooBat(s) case string: *e = FooBat(s) default: return fmt.Errorf("unsupported scan type for FooBat: %T", src) } return nil } type NullFooBat struct { FooBat FooBat Valid bool // Valid is true if FooBat is not NULL } // Scan implements the Scanner interface. func (ns *NullFooBat) Scan(value interface{}) error { if value == nil { ns.FooBat, ns.Valid = "", false return nil } ns.Valid = true return ns.FooBat.Scan(value) } // Value implements the driver Valuer interface. func (ns NullFooBat) Value() (driver.Value, error) { if !ns.Valid { return nil, nil } return string(ns.FooBat), nil } // Table comment type FooBar struct { // Column comment Baz sql.NullString }