Skip to content

Commit

Permalink
fix up partial_logical_plan
Browse files Browse the repository at this point in the history
Signed-off-by: Yuchen Liang <[email protected]>
  • Loading branch information
yliang412 committed Jan 29, 2025
1 parent 85e4a58 commit 8e99fb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions optd-core/src/plan/partial_logical_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ use std::sync::Arc;
/// [`LogicalPlan`]: crate::plan::logical_plan::LogicalPlan
#[derive(Clone)]
pub enum PartialLogicalPlan {
Relational(Arc<LogicalOperator<Relation, Scalar>>),
Scalar(Arc<ScalarOperator<Scalar>>),
Relational(Relation),
Scalar(Scalar),
}

/// A link to a relational node in a [`PartialLogicalPlan`].
Expand Down

0 comments on commit 8e99fb3

Please sign in to comment.