MCPcopy
hub / github.com/uber/aresdb / EnumNodeKey

Function EnumNodeKey

utils/key.go:90–92  ·  view source on GitHub ↗

EnumNodeKey builds the key for enum node

(namespace, table string, incarnation int, columnID, nodeID int)

Source from the content-addressed store, hash-verified

88
89// EnumNodeKey builds the key for enum node
90func EnumNodeKey(namespace, table string, incarnation int, columnID, nodeID int) string {
91 return path.Join(EnumNodeListKey(namespace, table, incarnation, columnID), strconv.Itoa(nodeID))
92}
93
94// SubscriberServiceName builds the subscriber service name
95func SubscriberServiceName(namespace string) string {

Callers 5

TestEnumMutatorFunction · 0.92
deleteEnumMethod · 0.92
preCreateEnumNodesFunction · 0.92
extendEnumCaseMethod · 0.92
GetEnumCasesMethod · 0.92

Calls 2

EnumNodeListKeyFunction · 0.85
JoinMethod · 0.65

Tested by 1

TestEnumMutatorFunction · 0.74