Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion batcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"errors"
"fmt"

"github.com/Masterminds/squirrel"
"gopkg.in/Masterminds/squirrel.v1"
)

type batchQueryRunner struct {
Expand Down
2 changes: 1 addition & 1 deletion batcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"testing"

"github.com/Masterminds/squirrel"
"github.com/stretchr/testify/require"
"gopkg.in/Masterminds/squirrel.v1"
)

func TestOneToManyWithFilterNotWritable(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion operators.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"gopkg.in/src-d/go-kallax.v1/types"

"github.com/Masterminds/squirrel"
"gopkg.in/Masterminds/squirrel.v1"
)

// ScalarCond returns a kallax.Condition that compares a property with the passed
Expand Down
2 changes: 1 addition & 1 deletion query.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"fmt"

"github.com/Masterminds/squirrel"
"gopkg.in/Masterminds/squirrel.v1"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion store.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"fmt"
"log"

"github.com/Masterminds/squirrel"
"github.com/lann/builder"
"gopkg.in/Masterminds/squirrel.v1"
)

var (
Expand Down