Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions datafusion/expr/src/logical_plan/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ impl LogicalPlanBuilder {
self.plan.schema()
}

/// Return the LogicalPlan of the plan build so far
pub fn plan(&self) -> &LogicalPlan {
&self.plan
}

/// Create an empty relation.
///
/// `produce_one_row` set to true means this empty node needs to produce a placeholder row.
Expand Down