Skip to content

Commit

Permalink
Fix for badger go gettable change
Browse files Browse the repository at this point in the history
  • Loading branch information
1lann committed Jul 1, 2017
1 parent 14a4ac9 commit fa6bde6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cete.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"time"

"github.com/1lann/msgpack"
"github.com/dgraph-io/badger/badger"
"github.com/dgraph-io/badger"
)

// Common errors that can be returned
Expand Down
2 changes: 1 addition & 1 deletion index.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"

"github.com/1lann/msgpack"
"github.com/dgraph-io/badger/badger"
"github.com/dgraph-io/badger"
)

// Bounds is the type for variables which represent a bound for Between.
Expand Down
2 changes: 1 addition & 1 deletion open.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync"

"github.com/1lann/msgpack"
"github.com/dgraph-io/badger/badger"
"github.com/dgraph-io/badger"
)

type indexConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion table.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sync"

"github.com/1lann/msgpack"
"github.com/dgraph-io/badger/badger"
"github.com/dgraph-io/badger"
)

// NewTable creates a new table in the database. You can optionally specify
Expand Down

0 comments on commit fa6bde6

Please sign in to comment.