dat icon indicating copy to clipboard operation
dat copied to clipboard

sqlx-runner exec error

Open woanware opened this issue 6 years ago • 1 comments

Line 719 in sqlx-runner/exec.go won't compile as the NewV4 method returns a string and an error so causes a multi value returned error:

https://github.com/satori/go.uuid/blob/master/generator.go

func NewV4() (UUID, error) { return global.NewV4() }

woanware avatar Mar 07 '18 21:03 woanware

Workaround used by many people is to set the go.uuid version like this in Gopkg.toml

[[constraint]] name = "github.com/satori/go.uuid" version = "v1.1.0"

richp10 avatar May 25 '18 20:05 richp10