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 7dea9dfCopy full SHA for 7dea9df
datafusion/physical-plan/src/projection.rs
@@ -285,6 +285,8 @@ impl ExecutionPlan for ProjectionExec {
285
parent_filters: Vec<Arc<dyn PhysicalExpr>>,
286
_config: &ConfigOptions,
287
) -> Result<FilterDescription> {
288
+ // In future, we can try to handle invert aliases here.
289
+ // For the time being, we pass through untransformed filters, so filters on aliases are not handled.
290
FilterDescription::from_children(parent_filters, &self.children())
291
}
292
0 commit comments