Canonicalise mongo receiver names
Remove redundant Mongo infixes that were miseed previously.
This commit is contained in:
parent
dc62d4f32c
commit
3831aad364
2 changed files with 44 additions and 44 deletions
|
|
@ -216,15 +216,15 @@ func (ts *TripleStore) GetTriple(val graph.TSVal) *graph.Triple {
|
|||
}
|
||||
|
||||
func (ts *TripleStore) GetTripleIterator(dir string, val graph.TSVal) graph.Iterator {
|
||||
return NewMongoIterator(ts, "triples", dir, val)
|
||||
return NewIterator(ts, "triples", dir, val)
|
||||
}
|
||||
|
||||
func (ts *TripleStore) GetNodesAllIterator() graph.Iterator {
|
||||
return NewMongoAllIterator(ts, "nodes")
|
||||
return NewAllIterator(ts, "nodes")
|
||||
}
|
||||
|
||||
func (ts *TripleStore) GetTriplesAllIterator() graph.Iterator {
|
||||
return NewMongoAllIterator(ts, "triples")
|
||||
return NewAllIterator(ts, "triples")
|
||||
}
|
||||
|
||||
func (ts *TripleStore) GetIdFor(s string) graph.TSVal {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue