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
Closescockroachdb#110261.
This commit adopts the new slice to array conversion syntax introduced
in go 1.20. The new syntax is only applicable in one small part of the
codebase, so it's a small change.
From https://tip.golang.org/doc/go1.20:
> Go 1.20 extends this to allow conversions from a slice to an array:
> given a slice x, [4]byte(x) can now be written instead of
> *(*[4]byte)(x).
Release note: None
0 commit comments