Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 91cd0a2

Browse files
authoredNov 13, 2024··
refactor(core): drop children_cost on the cost model, doc property builders (#235)
As discussed today :) Signed-off-by: Alex Chi <[email protected]>
1 parent 342f2fb commit 91cd0a2

File tree

8 files changed

+16
-22
lines changed

8 files changed

+16
-22
lines changed
 

‎optd-core/src/cascades/tasks/optimize_inputs.rs

-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ impl<T: NodeType, M: Memo<T>> Task<T, M> for OptimizeInputsTask {
197197
&expr.typ,
198198
&preds,
199199
&input_statistics_ref,
200-
&input_cost,
201200
Some(context.clone()),
202201
Some(optimizer),
203202
);

‎optd-core/src/cost.rs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ pub trait CostModel<T: NodeType, M: Memo<T>>: 'static + Send + Sync {
2323
node: &T,
2424
predicates: &[ArcPredNode<T>],
2525
children_stats: &[Option<&Statistics>],
26-
children_costs: &[Cost],
2726
context: Option<RelNodeContext>,
2827
optimizer: Option<&CascadesOptimizer<T, M>>,
2928
) -> Cost;

‎optd-core/src/logical_property.rs

+6
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,15 @@ use std::fmt::{Debug, Display};
88

99
use crate::nodes::{ArcPredNode, NodeType};
1010

11+
/// The trait enables we store any logical property in the memo table by erasing the concrete type.
12+
/// In the future, we can implement `serialize`/`deserialize` on this trait so that we can serialize
13+
/// the logical properties.
1114
pub trait LogicalProperty: 'static + Any + Send + Sync + Debug + Display {
1215
fn as_any(&self) -> &dyn Any;
1316
}
1417

18+
/// A wrapper around the `LogicalPropertyBuilder` so that we can erase the concrete type and store
19+
/// it safely in the memo table.
1520
pub trait LogicalPropertyBuilderAny<T: NodeType>: 'static + Send + Sync {
1621
fn derive_any(
1722
&self,
@@ -22,6 +27,7 @@ pub trait LogicalPropertyBuilderAny<T: NodeType>: 'static + Send + Sync {
2227
fn property_name(&self) -> &'static str;
2328
}
2429

30+
/// The trait for building logical properties for a plan node.
2531
pub trait LogicalPropertyBuilder<T: NodeType>: 'static + Send + Sync + Sized {
2632
type Prop: LogicalProperty + Sized + Clone;
2733

‎optd-core/src/physical_property.rs

+6
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,16 @@ use itertools::Itertools;
1212

1313
use crate::nodes::{ArcPredNode, NodeType, PlanNode, PlanNodeOrGroup};
1414

15+
/// The trait enables we store any physical property in the memo table by erasing the concrete type.
16+
/// In the future, we can implement `serialize`/`deserialize` on this trait so that we can serialize
17+
/// the physical properties.
1518
pub trait PhysicalProperty: 'static + Any + Send + Sync + Debug + Display {
1619
fn as_any(&self) -> &dyn Any;
1720
fn to_boxed(&self) -> Box<dyn PhysicalProperty>;
1821
}
1922

23+
/// A wrapper around the `PhysicalPropertyBuilder` so that we can erase the concrete type and store
24+
/// it safely in the memo table.
2025
pub trait PhysicalPropertyBuilderAny<T: NodeType>: 'static + Send + Sync {
2126
fn derive_any(
2227
&self,
@@ -41,6 +46,7 @@ pub trait PhysicalPropertyBuilderAny<T: NodeType>: 'static + Send + Sync {
4146
fn property_name(&self) -> &'static str;
4247
}
4348

49+
/// The trait for building physical properties for a plan node.
4450
pub trait PhysicalPropertyBuilder<T: NodeType>: 'static + Send + Sync + Sized {
4551
type Prop: PhysicalProperty + Clone + Sized;
4652

‎optd-datafusion-repr-adv-cost/src/lib.rs

+2-9
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,11 @@ impl CostModel<DfNodeType, NaiveMemo<DfNodeType>> for AdvancedCostModel {
6161
node: &DfNodeType,
6262
predicates: &[ArcDfPredNode],
6363
children_stats: &[Option<&Statistics>],
64-
children_costs: &[Cost],
6564
context: Option<RelNodeContext>,
6665
optimizer: Option<&CascadesOptimizer<DfNodeType>>,
6766
) -> Cost {
68-
self.base_model.compute_operation_cost(
69-
node,
70-
predicates,
71-
children_stats,
72-
children_costs,
73-
context,
74-
optimizer,
75-
)
67+
self.base_model
68+
.compute_operation_cost(node, predicates, children_stats, context, optimizer)
7669
}
7770

7871
fn derive_statistics(

‎optd-datafusion-repr/src/cost/adaptive_cost.rs

+2-9
Original file line numberDiff line numberDiff line change
@@ -67,22 +67,15 @@ impl CostModel<DfNodeType, NaiveMemo<DfNodeType>> for AdaptiveCostModel {
6767
node: &DfNodeType,
6868
predicates: &[ArcDfPredNode],
6969
children: &[Option<&Statistics>],
70-
children_cost: &[Cost],
7170
context: Option<RelNodeContext>,
7271
optimizer: Option<&CascadesOptimizer<DfNodeType>>,
7372
) -> Cost {
7473
if let DfNodeType::PhysicalScan = node {
7574
let row_cnt = self.get_row_cnt(&context);
7675
return DfCostModel::cost(0.0, row_cnt);
7776
}
78-
self.base_model.compute_operation_cost(
79-
node,
80-
predicates,
81-
children,
82-
children_cost,
83-
context,
84-
optimizer,
85-
)
77+
self.base_model
78+
.compute_operation_cost(node, predicates, children, context, optimizer)
8679
}
8780

8881
fn derive_statistics(

‎optd-datafusion-repr/src/cost/base_cost.rs

-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ impl CostModel<DfNodeType, NaiveMemo<DfNodeType>> for DfCostModel {
132132
node: &DfNodeType,
133133
predicates: &[ArcDfPredNode],
134134
children: &[Option<&Statistics>],
135-
_: &[Cost],
136135
_context: Option<RelNodeContext>,
137136
_optimizer: Option<&CascadesOptimizer<DfNodeType>>,
138137
) -> Cost {

‎optd-datafusion-repr/src/testing/dummy_cost.rs

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ impl CostModel<DfNodeType, NaiveMemo<DfNodeType>> for DummyCostModel {
1919
_: &DfNodeType,
2020
_: &[ArcDfPredNode],
2121
_: &[Option<&Statistics>],
22-
_: &[Cost],
2322
_: Option<RelNodeContext>,
2423
_: Option<&CascadesOptimizer<DfNodeType>>,
2524
) -> Cost {

0 commit comments

Comments
 (0)
This repository has been archived.