From 1fe3ea93cccbf690a89a7d034c6b4e7c532e0195 Mon Sep 17 00:00:00 2001 From: Weizhen Wang Date: Mon, 12 Jan 2026 13:58:55 +0800 Subject: [PATCH] planner: add some plan cache benchmark into bench daily (#65524) ref pingcap/tidb#65100 --- pkg/planner/core/integration_partition_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/planner/core/integration_partition_test.go b/pkg/planner/core/integration_partition_test.go index 97617221c6..fe1d98ebdb 100644 --- a/pkg/planner/core/integration_partition_test.go +++ b/pkg/planner/core/integration_partition_test.go @@ -266,5 +266,8 @@ func BenchmarkPartitionRangeColumns(b *testing.B) { func TestBenchDaily(t *testing.T) { benchdaily.Run( BenchmarkPartitionRangeColumns, + BenchmarkPlanCacheBindingMatch, + BenchmarkPlanCacheInsert, + BenchmarkNonPreparedPlanCacheDML, ) }