DeleteMutSchema deletes the schema for given predicate from mutSchema.
(pred string)
| 210 | |
| 211 | // DeleteMutSchema deletes the schema for given predicate from mutSchema. |
| 212 | func (s *state) DeleteMutSchema(pred string) { |
| 213 | s.Lock() |
| 214 | defer s.Unlock() |
| 215 | delete(s.mutSchema, pred) |
| 216 | } |
| 217 | |
| 218 | // GetIndexingPredicates returns the list of predicates for which we are building indexes. |
| 219 | func GetIndexingPredicates() []string { |
no test coverage detected