EnumNodeListKey builds the key for enum node list
(namespace, table string, incarnation, columnID int)
| 83 | |
| 84 | // EnumNodeListKey builds the key for enum node list |
| 85 | func EnumNodeListKey(namespace, table string, incarnation, columnID int) string { |
| 86 | return path.Join(NamespaceKey(namespace), "enum_cases", table, strconv.Itoa(incarnation), strconv.Itoa(columnID)) |
| 87 | } |
| 88 | |
| 89 | // EnumNodeKey builds the key for enum node |
| 90 | func EnumNodeKey(namespace, table string, incarnation int, columnID, nodeID int) string { |