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