Merge pull request #289 from barakmich/psql

graph: Postgres backend
This commit is contained in:
Barak Michener 2015-10-05 17:20:55 -04:00
commit f7cdec8294
21 changed files with 2251 additions and 15 deletions

View file

@ -269,6 +269,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)]
}