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 <wangweizhen@pingcap.com>
  • Loading branch information
hawkingrei committed Mar 6, 2024
1 parent 1eaa815 commit a9acea0
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 a9acea0

Please sign in to comment.