/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/sql/ast/constraint.go
34 строки
671 B
Kyle Conroy
gofmt -s -w . (#890)
08 фев 2021, 08:16
Не верифицирован
08 фев 2021, 08:16
9a59d89
Код
Авторство
О чём код?
package ast type Constraint struct { Contype ConstrType Conname *string Deferrable bool Initdeferred bool Location int IsNoInherit bool RawExpr Node CookedExpr *string GeneratedWhen byte Keys *List Exclusions *List Options *List Indexname *string Indexspace *string AccessMethod *string WhereClause Node Pktable *RangeVar FkAttrs *List PkAttrs *List FkMatchtype byte FkUpdAction byte FkDelAction byte OldConpfeqop *List OldPktableOid Oid SkipValidation bool InitiallyValid bool } func (n *Constraint) Pos() int { return n.Location }