Skip to content
Merged
Changes from 2 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
233 changes: 161 additions & 72 deletions src/rewrite/normal_form.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,22 +233,11 @@ impl SpjNormalForm {
.map(|expr| predicate.normalize_expr(expr))
.collect();

let mut referenced_tables = vec![];
original_plan
.apply(|plan| {
if let LogicalPlan::TableScan(scan) = plan {
referenced_tables.push(scan.table_name.clone());
}

Ok(TreeNodeRecursion::Continue)
})
// No chance of error since we never return Err -- this unwrap is safe
.unwrap();

Ok(Self {
output_schema: Arc::clone(original_plan.schema()),
output_exprs,
referenced_tables,
// Reuse referenced_tables collected during Predicate::new to avoid extra traversal
referenced_tables: predicate.referenced_tables.clone(),
predicate,
})
}
Expand Down Expand Up @@ -344,84 +333,95 @@ struct Predicate {
ranges_by_equivalence_class: Vec<Option<Interval>>,
/// Filter expressions that aren't column equality predicates or range filters.
residuals: HashSet<Expr>,
/// Tables referenced in this plan (collected during single-pass traversal)
referenced_tables: Vec<TableReference>,
}

impl Predicate {
/// Create a new Predicate by analyzing the given logical plan.
/// Uses single-pass traversal to collect schema, columns, filters, and referenced tables.
fn new(plan: &LogicalPlan) -> Result<Self> {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about adding some unit tests for the new() method to ensure we're collecting the expected items in Predicate as previously.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, will add the unit test!

let mut schema = DFSchema::empty();
plan.apply(|plan| {
if let LogicalPlan::TableScan(scan) = plan {
let new_schema = DFSchema::try_from_qualified_schema(
scan.table_name.clone(),
scan.source.schema().as_ref(),
)?;
schema = if schema.fields().is_empty() {
new_schema
} else {
schema.join(&new_schema)?
}
}
let mut columns_info: Vec<(Column, arrow::datatypes::DataType)> = Vec::new();
let mut filters: Vec<Expr> = Vec::new();
let mut referenced_tables: Vec<TableReference> = Vec::new();

// Single traversal to collect everything
plan.apply(|node| {
match node {
LogicalPlan::TableScan(scan) => {
// Collect referenced table
referenced_tables.push(scan.table_name.clone());

Ok(TreeNodeRecursion::Continue)
})?;
// Build schema
let new_schema = DFSchema::try_from_qualified_schema(
scan.table_name.clone(),
scan.source.schema().as_ref(),
)?;

// Collect columns with their data types
for (table_ref, field) in new_schema.iter() {
columns_info.push((
Column::new(table_ref.cloned(), field.name()),
field.data_type().clone(),
));
}

let mut new = Self {
schema,
eq_classes: vec![],
eq_class_idx_by_column: HashMap::default(),
ranges_by_equivalence_class: vec![],
residuals: HashSet::new(),
};
// Merge schema
schema = if schema.fields().is_empty() {
new_schema
} else {
schema.join(&new_schema)?
};

// Collect all referenced columns
plan.apply(|plan| {
if let LogicalPlan::TableScan(scan) = plan {
for (i, (table_ref, field)) in DFSchema::try_from_qualified_schema(
scan.table_name.clone(),
scan.source.schema().as_ref(),
)?
.iter()
.enumerate()
{
let column = Column::new(table_ref.cloned(), field.name());
let data_type = field.data_type();
new.eq_classes
.push(ColumnEquivalenceClass::new_singleton(column.clone()));
new.eq_class_idx_by_column.insert(column, i);
new.ranges_by_equivalence_class
.push(Some(Interval::make_unbounded(data_type)?));
// Collect filters from TableScan
filters.extend(scan.filters.iter().cloned());
}
LogicalPlan::Filter(filter) => {
filters.push(filter.predicate.clone());
}
}

Ok(TreeNodeRecursion::Continue)
})?;

// Collect any filters
plan.apply(|plan| {
let filters = match plan {
LogicalPlan::TableScan(scan) => scan.filters.as_slice(),
LogicalPlan::Filter(filter) => core::slice::from_ref(&filter.predicate),
LogicalPlan::Join(_join) => {
return Err(DataFusionError::Internal(
"joins are not supported yet".to_string(),
))
));
}
LogicalPlan::Projection(_) => &[],
LogicalPlan::Projection(_) => {}
_ => {
return Err(DataFusionError::Plan(format!(
"unsupported logical plan: {}",
plan.display()
)))
node.display()
)));
}
};

for expr in filters.iter().flat_map(split_conjunction) {
new.insert_conjuct(expr)?;
}

Ok(TreeNodeRecursion::Continue)
})?;

// Initialize data structures with known capacity
let num_columns = columns_info.len();
let mut eq_classes = Vec::with_capacity(num_columns);
let mut eq_class_idx_by_column = HashMap::with_capacity(num_columns);
let mut ranges_by_equivalence_class = Vec::with_capacity(num_columns);

for (i, (column, data_type)) in columns_info.into_iter().enumerate() {
eq_classes.push(ColumnEquivalenceClass::new_singleton(column.clone()));
eq_class_idx_by_column.insert(column, i);
ranges_by_equivalence_class.push(Some(Interval::make_unbounded(&data_type)?));
}

let mut new = Self {
schema,
eq_classes,
eq_class_idx_by_column,
ranges_by_equivalence_class,
residuals: HashSet::new(),
referenced_tables,
};

// Process all collected filters
for expr in filters.iter().flat_map(split_conjunction) {
new.insert_conjuct(expr)?;
Comment thread
zhuqi-lucas marked this conversation as resolved.
}

Ok(new)
}

Expand Down Expand Up @@ -1163,11 +1163,11 @@ mod test {
TestCase {
name: "range filter + equality predicate",
base:
"SELECT column1, column2 FROM t1 WHERE column1 = column3 AND column1 >= '2022'",
"SELECT column1, column2 FROM t1 WHERE column1 = column3 AND column1 >= '2022'",
query:
// Since column1 = column3 in the original view,
// we are allowed to substitute column1 for column3 and vice versa.
"SELECT column2, column3 FROM t1 WHERE column1 = column3 AND column3 >= '2023'",
"SELECT column2, column3 FROM t1 WHERE column1 = column3 AND column3 >= '2023'",
},
TestCase {
name: "range filter with inequality on non-discrete type",
Expand Down Expand Up @@ -1229,4 +1229,93 @@ mod test {

Ok(())
}

#[tokio::test]
async fn test_predicate_new_collects_expected_data() -> Result<()> {
let ctx = SessionContext::new();

// Create a table with known schema
ctx.sql(
"CREATE TABLE test_table (
col1 INT,
col2 VARCHAR,
col3 DOUBLE
)",
)
.await?
.collect()
.await?;

// Create a plan with filters
let plan = ctx
.sql("SELECT col1, col2 FROM test_table WHERE col1 >= 10 AND col2 = col3")
.await?
.into_optimized_plan()?;

let normal_form = SpjNormalForm::new(&plan)?;

// Verify referenced_tables is collected
assert_eq!(normal_form.referenced_tables().len(), 1);
assert_eq!(normal_form.referenced_tables()[0].to_string(), "test_table");

// Verify output_exprs matches the projection (2 columns)
assert_eq!(normal_form.output_exprs().len(), 2);

// Verify schema is preserved
assert_eq!(normal_form.output_schema().fields().len(), 2);

Ok(())
}

#[tokio::test]
async fn test_predicate_new_with_multiple_tables() -> Result<()> {
let ctx = SessionContext::new();

ctx.sql("CREATE TABLE t1 (a INT, b INT)")
.await?
.collect()
.await?;
ctx.sql("CREATE TABLE t2 (c INT, d INT)")
.await?
.collect()
.await?;

// Note: Join is not supported yet, so we test with a single table
// This test verifies the single-pass traversal works correctly
let plan = ctx
.sql("SELECT a, b FROM t1 WHERE a >= 0 AND b <= 100")
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So I think the test is duplicated with the above one.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIRC, the mv algo supports join

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@xudong963 We are still not supporting join now, see:

"joins are not supported yet".to_string(),

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed the duplicated test now.

.await?
.into_optimized_plan()?;

let normal_form = SpjNormalForm::new(&plan)?;

// Verify data collection
assert_eq!(normal_form.referenced_tables().len(), 1);
assert_eq!(normal_form.output_exprs().len(), 2);

Ok(())
}

#[tokio::test]
async fn test_predicate_new_with_range_filters() -> Result<()> {
let ctx = SessionContext::new();

ctx.sql("CREATE TABLE range_test (x INT, y INT, z VARCHAR)")
.await?
.collect()
.await?;

let plan = ctx
.sql("SELECT * FROM range_test WHERE x >= 10 AND x <= 100 AND y = 50")
.await?
.into_optimized_plan()?;

let normal_form = SpjNormalForm::new(&plan)?;

// Verify all columns are in output
assert_eq!(normal_form.output_exprs().len(), 3);
assert_eq!(normal_form.referenced_tables().len(), 1);

Ok(())
}
}