From fabca4ed6f280b11be0192f7baf7774b419d9cdc Mon Sep 17 00:00:00 2001 From: Dousir9 <736191200@qq.com> Date: Fri, 6 Jan 2023 16:11:30 +0800 Subject: [PATCH] fix typo --- planner/core/exhaust_physical_plans.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planner/core/exhaust_physical_plans.go b/planner/core/exhaust_physical_plans.go index dfd8d9572db81..205a2d8242b4b 100644 --- a/planner/core/exhaust_physical_plans.go +++ b/planner/core/exhaust_physical_plans.go @@ -2530,7 +2530,7 @@ func (p *baseLogicalPlan) exhaustPhysicalPlans(_ *property.PhysicalProperty) ([] } // canPushToCop checks if it can be pushed to some stores. For TiKV, it only checks datasource. -// For TiFlash, it will check whether the operator is supported, but note that the check might be inaccrute. +// For TiFlash, it will check whether the operator is supported, but note that the check might be inaccrate. func (p *baseLogicalPlan) canPushToCop(storeTp kv.StoreType) bool { return p.canPushToCopImpl(storeTp, false) }