Merge pull request #217 from barakmich/primarykey

Rewrite keys into concrete types, remove key package
This commit is contained in:
Barak Michener 2015-02-21 16:37:55 -05:00
commit 2c74cb1657
9 changed files with 96 additions and 93 deletions

View file

@ -16,7 +16,6 @@ package iterator
import (
"github.com/google/cayley/graph"
"github.com/google/cayley/keys"
"github.com/google/cayley/quad"
)
@ -57,7 +56,7 @@ func (qs *store) NameOf(v graph.Value) string {
func (qs *store) Size() int64 { return 0 }
func (qs *store) Horizon() graph.PrimaryKey { return keys.NewSequentialKey(0) }
func (qs *store) Horizon() graph.PrimaryKey { return graph.NewSequentialKey(0) }
func (qs *store) DebugPrint() {}