isidentical commented on code in PR #3912: URL: https://github.com/apache/arrow-datafusion/pull/3912#discussion_r1014234660
########## datafusion/physical-expr/src/expressions/column.rs: ########## @@ -107,6 +102,18 @@ impl PhysicalExpr for Column { ) -> Result<Arc<dyn PhysicalExpr>> { Ok(self) } + + /// Return the boundaries of this column, if known. + fn analyze(&self, context: &mut AnalysisContext) -> Option<ExprBoundaries> { Review Comment: I think having `boundaries()` and `apply_boundaries` makes it consistent. Will change, thanks! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org