(namespace, name string)
| 22 | type TableSchemaMutator interface { |
| 23 | ListTables(namespace string) ([]string, error) |
| 24 | GetTable(namespace, name string) (*common.Table, error) |
| 25 | CreateTable(namespace string, table *common.Table, force bool) error |
| 26 | DeleteTable(namespace, name string) error |
| 27 | UpdateTable(namespace string, table common.Table, force bool) error |
no outgoing calls
no test coverage detected