Option to remove size calls
Fix permutations of optimization intersections Return empty string as per bolt fix case sensitivity and memstore panic
This commit is contained in:
parent
aedd0401e2
commit
fab8cd64b3
4 changed files with 34 additions and 3 deletions
|
|
@ -249,6 +249,9 @@ func (qs *QuadStore) ValueOf(name string) graph.Value {
|
|||
}
|
||||
|
||||
func (qs *QuadStore) NameOf(id graph.Value) string {
|
||||
if id == nil {
|
||||
return ""
|
||||
}
|
||||
return qs.revIDMap[id.(int64)]
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue