* *: remove non-prepared plan cache non-prepared plan cache is not usable if we can only do full string match. And further development doesn't worth the effort.
44 lines
1.4 KiB
Go
44 lines
1.4 KiB
Go
// Copyright 2018 PingCAP, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
// // Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package plan
|
|
|
|
import (
|
|
"time"
|
|
|
|
. "github.com/pingcap/check"
|
|
"github.com/pingcap/tidb/mysql"
|
|
"github.com/pingcap/tidb/sessionctx"
|
|
"github.com/pingcap/tidb/util/testleak"
|
|
)
|
|
|
|
var _ = Suite(&testCacheSuite{})
|
|
|
|
type testCacheSuite struct {
|
|
ctx sessionctx.Context
|
|
}
|
|
|
|
func (s *testCacheSuite) SetUpSuite(c *C) {
|
|
ctx := mockContext()
|
|
ctx.GetSessionVars().SnapshotTS = 0
|
|
ctx.GetSessionVars().SQLMode = mysql.ModeNone
|
|
ctx.GetSessionVars().TimeZone = time.UTC
|
|
ctx.GetSessionVars().ConnectionID = 0
|
|
s.ctx = ctx
|
|
}
|
|
|
|
func (s *testCacheSuite) TestCacheKey(c *C) {
|
|
defer testleak.AfterTest(c)()
|
|
key := NewPSTMTPlanCacheKey(s.ctx.GetSessionVars(), 1, 1)
|
|
c.Assert(key.Hash(), DeepEquals, []byte{0x74, 0x65, 0x73, 0x74, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
|
|
}
|