(pred string)
| 59 | } |
| 60 | |
| 61 | func (s *schemaStore) getSchema(pred string) *pb.SchemaUpdate { |
| 62 | s.RLock() |
| 63 | defer s.RUnlock() |
| 64 | return s.schemaMap[pred] |
| 65 | } |
| 66 | |
| 67 | func (s *schemaStore) setSchemaAsList(pred string) { |
| 68 | s.Lock() |
no test coverage detected