rewrite col --> col_max
(
&mut self,
column: &phys_expr::Column,
column_expr: &Arc<dyn PhysicalExpr>,
field: &Field,
)
| 850 | |
| 851 | /// rewrite col --> col_max |
| 852 | fn max_column_expr( |
| 853 | &mut self, |
| 854 | column: &phys_expr::Column, |
| 855 | column_expr: &Arc<dyn PhysicalExpr>, |
| 856 | field: &Field, |
| 857 | ) -> Result<Arc<dyn PhysicalExpr>> { |
| 858 | self.stat_column_expr(column, column_expr, field, StatisticsType::Max) |
| 859 | } |
| 860 | |
| 861 | /// rewrite col --> col_null_count |
| 862 | fn null_count_column_expr( |
no test coverage detected