From e516d98f60312aa2815f55a8ef303fec4cb60670 Mon Sep 17 00:00:00 2001 From: Marcus Gartner Date: Fri, 20 Dec 2024 15:29:01 -0500 Subject: [PATCH] sql: remove unused PlanNode type alias Release note: None --- pkg/sql/plan.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/sql/plan.go b/pkg/sql/plan.go index b5d53d9bebbb..208076a22cd8 100644 --- a/pkg/sql/plan.go +++ b/pkg/sql/plan.go @@ -138,9 +138,6 @@ type mutationPlanNode interface { rowsWritten() int64 } -// PlanNode is the exported name for planNode. Useful for CCL hooks. -type PlanNode = planNode - // planNodeFastPath is implemented by nodes that can perform all their // work during startPlan(), possibly affecting even multiple rows. For // example, DELETE can do this.