/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/sql/info/info.go
59 строк
1 KB
Kyle Gray
chore!: Rename kyleconroy/sqlc to sqlc-dev/sqlc (#2523)
26 июл 2023, 19:12
Не верифицирован
26 июл 2023, 19:12
d361c5d
Код
Авторство
О чём код?
package info import ( "github.com/sqlc-dev/sqlc/internal/sql/catalog" ) // Provide a read-only view into the catalog func Newo(c *catalog.Catalog) InformationSchema { return InformationSchema{c: c} } type InformationSchema struct { c *catalog.Catalog } type Table struct { Catalog string Schema string Name string } // SELECT * FROM information_schema.tables; func (i *InformationSchema) Tables() []Table { var tables []Table for _, s := range i.c.Schemas { for _, t := range s.Tables { tables = append(tables, Table{ Catalog: i.c.Name, Schema: s.Name, Name: t.Rel.Name, }) } } return tables } type Column struct { Catalog string Schema string Table string Name string DataType string IsNullable bool } // SELECT * FROM information_schema.columns; func (i *InformationSchema) Columns() []Column { return []Column{} } type Schema struct { Catalog string Name string } // SELECT * FROM information_schema.schemata; func (i *InformationSchema) Schemata() []Schema { return []Schema{} }