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:
Barak Michener 2015-08-10 16:28:16 -04:00
parent aedd0401e2
commit fab8cd64b3
4 changed files with 34 additions and 3 deletions

View file

@ -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)]
}