We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 854f255 commit 2de57eeCopy full SHA for 2de57ee
datafusion/physical-plan/src/projection.rs
@@ -285,6 +285,9 @@ impl ExecutionPlan for ProjectionExec {
285
parent_filters: Vec<Arc<dyn PhysicalExpr>>,
286
_config: &ConfigOptions,
287
) -> Result<FilterDescription> {
288
+ // TODO: In future, we can try to handle inverting aliases here.
289
+ // For the time being, we pass through untransformed filters, so filters on aliases are not handled.
290
+ // https://github.com/apache/datafusion/issues/17246
291
FilterDescription::from_children(parent_filters, &self.children())
292
}
293
0 commit comments