executor: uncomment the BatchPointGet unit tests (#11962)

Signed-off-by: Lonng <heng@lonng.org>
This commit is contained in:
Lonng
2019-09-01 09:08:12 +08:00
committed by GitHub
parent bb84d1bdba
commit bbb70be448

View File

@ -20,6 +20,7 @@ import (
"github.com/pingcap/tidb/kv"
"github.com/pingcap/tidb/session"
"github.com/pingcap/tidb/store/mockstore"
"github.com/pingcap/tidb/util/testkit"
)
type testBatchPointGetSuite struct {
@ -56,7 +57,7 @@ func (s *testBatchPointGetSuite) TearDownSuite(c *C) {
}
func (s *testBatchPointGetSuite) TestBatchPointGetExec(c *C) {
/*tk := testkit.NewTestKit(c, s.store)
tk := testkit.NewTestKit(c, s.store)
tk.MustExec("use test")
tk.MustExec("drop table if exists t")
tk.MustExec("create table t(a int primary key auto_increment not null, b int, c int, unique key idx_abc(a, b, c))")
@ -97,5 +98,5 @@ func (s *testBatchPointGetSuite) TestBatchPointGetExec(c *C) {
"1",
"2",
"4",
))*/
))
}