Skip to content

Commit

Permalink
*: upgrade go1.22.0
Browse files Browse the repository at this point in the history
Signed-off-by: Weizhen Wang <[email protected]>
  • Loading branch information
hawkingrei committed Feb 18, 2024
1 parent 4412e75 commit db37317
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/executor/executor_pkg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,9 @@ func TestAggPartialResultMapperB(t *testing.T) {
var cases []testCase
// https://github.com/golang/go/issues/63438
// in 1.21, the load factor of map is 6 rather than 6.5 and the go team refused to backport to 1.21.
if strings.Contains(runtime.Version(), `go1.21`) || strings.Contains(runtime.Version(), `go1.22`) {
// https://github.com/golang/go/issues/65706
// in 1.22, it has problem.
if strings.Contains(runtime.Version(), `go1.21`) {
cases = []testCase{
{
rowNum: 0,
Expand Down

0 comments on commit db37317

Please sign in to comment.