()
| 5 | ) |
| 6 | |
| 7 | func NewCatalog() *catalog.Catalog { |
| 8 | def := "public" // TODO: What is the default database for MySQL? |
| 9 | return &catalog.Catalog{ |
| 10 | DefaultSchema: def, |
| 11 | Schemas: []*catalog.Schema{ |
| 12 | defaultSchema(def), |
| 13 | }, |
| 14 | Extensions: map[string]struct{}{}, |
| 15 | } |
| 16 | } |
no test coverage detected
searching dependent graphs…