From a64df83502821f18067fb4ff65dd217815b305c9 Mon Sep 17 00:00:00 2001 From: c8ef Date: Sun, 30 Jun 2024 22:07:41 +0800 Subject: [PATCH] fix doc (#11181) --- datafusion/common/src/display/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datafusion/common/src/display/mod.rs b/datafusion/common/src/display/mod.rs index 732f6a73e1d2..2345c0e4c4fc 100644 --- a/datafusion/common/src/display/mod.rs +++ b/datafusion/common/src/display/mod.rs @@ -56,11 +56,11 @@ pub enum PlanType { /// The name of the optimizer which produced this plan optimizer_name: String, }, - /// The final, fully optimized physical which would be executed + /// The final, fully optimized physical plan which would be executed FinalPhysicalPlan, /// The final with stats, fully optimized physical plan which would be executed FinalPhysicalPlanWithStats, - /// The final with stats, fully optimized physical plan which would be executed + /// The final with schema, fully optimized physical plan which would be executed FinalPhysicalPlanWithSchema, }