You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In store.go you import github.com/Masterminds/squirrel but looking at the master of squirrel I do not find any DBProxyContext.
If I checkout gopkg.in/Masterminds/squirrel.v1 I find it.
I suppose you should import gopkg.in/Masterminds/squirrel.v1 and then in a second time investigate if the DBProxyContext is gone for real in the next squirrel release and find a way to stop using it in kallax.
The text was updated successfully, but these errors were encountered:
when running a simple
go build
in thegopkg.in/src-d/go-kallax.v1
directory (resulting from a go get) I get the following error:# gopkg.in/src-d/go-kallax.v1 ./store.go:120:12: undefined: squirrel.DBProxyContext ./store.go:121:12: undefined: squirrel.DBProxyContext
In store.go you import
github.com/Masterminds/squirrel
but looking at themaster
of squirrel I do not find anyDBProxyContext
.If I checkout
gopkg.in/Masterminds/squirrel.v1
I find it.I suppose you should
import gopkg.in/Masterminds/squirrel.v1
and then in a second time investigate if theDBProxyContext
is gone for real in the next squirrel release and find a way to stop using it in kallax.The text was updated successfully, but these errors were encountered: