(name string, tables ...map[string]any)
| 24 | } |
| 25 | |
| 26 | func makeSchema(name string, tables ...map[string]any) map[string]any { |
| 27 | return map[string]any{ |
| 28 | "name": name, |
| 29 | "tables": tables, |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | func makeSchemaWithViews(name string, views []string, tables ...map[string]any) map[string]any { |
| 34 | viewList := make([]map[string]any, 0, len(views)) |
no outgoing calls
no test coverage detected