Skip to content

Commit 280b3ca

Browse files
committed
Converted internal representation of LogicalPlanBuilder from LogicalPlan to Arc<LogicalPlan> apache#10485
1 parent 83e62bb commit 280b3ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/expr/src/logical_plan/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ pub const UNNAMED_TABLE: &str = "?table?";
9898
/// ```
9999
#[derive(Debug, Clone)]
100100
pub struct LogicalPlanBuilder {
101-
plan: Arc<LogicalPlan>,,
101+
plan: Arc<LogicalPlan>,
102102
}
103103

104104
impl LogicalPlanBuilder {

0 commit comments

Comments
 (0)