(attr string, uid uint64)
| 37 | } |
| 38 | |
| 39 | func RootNsReverseKey(attr string, uid uint64) []byte { |
| 40 | attr = x.AttrInRootNamespace(attr) |
| 41 | return x.ReverseKey(attr, uid) |
| 42 | } |
| 43 | |
| 44 | func RootNsIndexKey(attr, term string) []byte { |
| 45 | attr = x.AttrInRootNamespace(attr) |
nothing calls this directly
no test coverage detected