Finish minimal feature set, start with tests

This commit is contained in:
Daniel 2018-09-10 19:01:28 +02:00
parent 3d60431376
commit 06a34f931e
34 changed files with 651 additions and 346 deletions

View file

@ -11,7 +11,7 @@ type Interface interface {
Get(key string) (record.Record, error)
Put(m record.Record) error
Delete(key string) error
Query(q *query.Query) (*iterator.Iterator, error)
Query(q *query.Query, local, internal bool) (*iterator.Iterator, error)
ReadOnly() bool
Maintain() error