Get the length of the group by expression in the output schema This is not simply group by expression length. Expression may be GroupingSet, etc. In these case we need to get inner expression lengths.
(&self)
| 3695 | /// This is not simply group by expression length. Expression may be |
| 3696 | /// GroupingSet, etc. In these case we need to get inner expression lengths. |
| 3697 | pub fn group_expr_len(&self) -> Result<usize> { |
| 3698 | grouping_set_expr_count(&self.group_expr) |
| 3699 | } |
| 3700 | |
| 3701 | /// Returns the data type of the grouping id. |
| 3702 | /// |
no test coverage detected