(namespace string, name string)
| 301 | } |
| 302 | |
| 303 | func (m *tableSchemaMutator) readSchema(namespace string, name string) (schemaProto pb.EntityConfig, version int, err error) { |
| 304 | version, err = readValue(m.txnStore, utils.SchemaKey(namespace, name), &schemaProto) |
| 305 | if common.IsNonExist(err) { |
| 306 | err = metaCom.ErrTableDoesNotExist |
| 307 | } |
| 308 | return |
| 309 | } |
no test coverage detected