InstanceKey builds key for instance
(namespace, name string)
| 78 | |
| 79 | // InstanceKey builds key for instance |
| 80 | func InstanceKey(namespace, name string) string { |
| 81 | return path.Join(InstanceListKey(namespace), name) |
| 82 | } |
| 83 | |
| 84 | // EnumNodeListKey builds the key for enum node list |
| 85 | func EnumNodeListKey(namespace, table string, incarnation, columnID int) string { |
nothing calls this directly
no test coverage detected