(ns, ts uint64)
| 38 | } |
| 39 | |
| 40 | func ApplyInitialSchema(ns, ts uint64) error { |
| 41 | for _, su := range schema.InitialSchema(ns) { |
| 42 | if err := updateSchema(su, ts); err != nil { |
| 43 | return err |
| 44 | } |
| 45 | } |
| 46 | applyInitialTypes(ns, ts) |
| 47 | return nil |
| 48 | } |
| 49 | |
| 50 | func applyInitialTypes(ns, ts uint64) { |
| 51 | initialTypes := schema.InitialTypes(ns) |
nothing calls this directly
no test coverage detected