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
[Go 1.26](https://go.dev/doc/go1.26) has three changes of note:
- new(var) turns a value into a pointer, replacing our shared.Ptr.
Implementing
- Self-referential generics are allowed. This would apply to our
RecordItems/PgItems UpdateIfNotExists but also comes with noisy changes
across many callsites and it's only really used for the CDC store that
we're looking to rip out. Keeping as is
- fmt.Errorf(constant_string) is now performant but we'd also need to
reconfigure linters. Moving to [DBI-529: Use golang 1.26's fmt.Errorf
instead of
errors.New](https://linear.app/clickhouse/issue/DBI-529/use-golang-126s-fmterrorf-instead-of-errorsnew)
Needs a golangci-lint bump to lint successfully
0 commit comments