From 625cf38b1af7e866a8715953f4da21a22d5f4bbf Mon Sep 17 00:00:00 2001 From: Yiding Cui Date: Sun, 29 Sep 2019 20:06:46 +0800 Subject: [PATCH] fix test --- planner/core/logical_plan_test.go | 2 +- tools/check/go.mod | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/planner/core/logical_plan_test.go b/planner/core/logical_plan_test.go index 442be0987c4ff..eb086694f3e0e 100644 --- a/planner/core/logical_plan_test.go +++ b/planner/core/logical_plan_test.go @@ -942,7 +942,7 @@ func (s *testPlanSuite) TestPlanBuilder(c *C) { }, { sql: "update t set a = 2 where b in (select c from t)", - plan: "LeftHashJoin{TableReader(Table(t))->IndexReader(Index(t.c_d_e)[[NULL,+inf]])->HashAgg}(Column#2,Column#25)->Projection->Update", + plan: "LeftHashJoin{TableReader(Table(t))->IndexReader(Index(t.c_d_e)[[NULL,+inf]])->StreamAgg}(test.t.b,test.t.c)->Projection->Update", }, } diff --git a/tools/check/go.mod b/tools/check/go.mod index 6dfc12cecadbd..ca5d580f6d6a4 100644 --- a/tools/check/go.mod +++ b/tools/check/go.mod @@ -20,5 +20,3 @@ require ( gopkg.in/yaml.v2 v2.2.2 // indirect honnef.co/go/tools v0.0.0-20180920025451-e3ad64cb4ed3 ) - -go 1.13