Versions in this module Expand all Collapse all v1 v1.13.1 May 10, 2022 Changes in this version + var Exists = errors.New("already exists") + var NotFound = errors.New("does not exist") + var NotUnique = errors.New("is not unique") + type Error struct + Code string + Column int + Err error + Line int + Location int + Message string + func ColumnExists(rel, col string) *Error + func ColumnNotFound(rel, col string) *Error + func FunctionNotFound(fun string) *Error + func FunctionNotUnique(fn string) *Error + func RelationExists(rel string) *Error + func RelationNotFound(rel string) *Error + func SchemaExists(name string) *Error + func SchemaNotFound(sch string) *Error + func TypeExists(typ string) *Error + func TypeNotFound(typ string) *Error + func (e *Error) Error() string + func (e *Error) Unwrap() error