Versions in this module Expand all Collapse all v0 v0.1.0 Apr 24, 2026 Changes in this version + const MaxSchemaFileSize + type Catalog struct + func Load(sources []SchemaSource) (*Catalog, error) + func LoadFiles(paths []string) (*Catalog, error) + func (c *Catalog) Table(name string) (Table, bool) + func (c *Catalog) TableNames() []string + func (c *Catalog) Warnings() []string + type Column struct + Default *string + Name string + Nullable bool + Type string + type Index struct + Columns []string + Name string + Unique bool + type SchemaSource struct + Label string + Path string + SQL string + type Table struct + Columns []Column + Indexes []Index + Name string + PrimaryKey []string