Bogdan Constantinescu

Results 4 issues of Bogdan Constantinescu

Tag `v1.9.0` has support for `go 1.13` (from go mod file) and in `v1.10.0` it was changed to `go 1.18`. Isn't this a breaking change? I want to upgrade dependencies...

> Please check if what you want to add to `awesome-go` list meets [quality standards](https://github.com/avelino/awesome-go/blob/main/CONTRIBUTING.md#quality-standards) before sending pull request. Thanks! **Please provide package links to:** - repo link (github.com, gitlab.com,...

### Description Took into account `ConnectionAttributes` config, if set, in `FormatDSN` Fixes https://github.com/go-sql-driver/mysql/issues/1618 ### Checklist - [x] Code compiles correctly - [x] Created tests which fail without the change (if...

### Issue description [Config.FormatDSN](https://github.com/go-sql-driver/mysql/blob/v1.8.1/dsn.go#L226) does not take into account [ConnectionAttributes](https://github.com/go-sql-driver/mysql/blob/v1.8.1/dsn.go#L46) property. ### Example code ```go package main import ( "log" "github.com/go-sql-driver/mysql" ) func main() { testDSN := "usr/pwd@tcp(127.0.0.1:3306)/dbname?connectionAttributes=foo:bar" cfg, err...