Computes the representation type of this aggregate function. This is a wrapper around [`Self::output_sql_type`] that converts the result to a representation type.
(&self, input_type: ReprColumnType)
| 2767 | /// |
| 2768 | /// This is a wrapper around [`Self::output_sql_type`] that converts the result to a representation type. |
| 2769 | pub fn output_type(&self, input_type: ReprColumnType) -> ReprColumnType { |
| 2770 | ReprColumnType::from(&self.output_sql_type(SqlColumnType::from_repr(&input_type))) |
| 2771 | } |
| 2772 | |
| 2773 | /// Compute output type for ROW_NUMBER, RANK, DENSE_RANK |
| 2774 | fn output_type_ranking_window_funcs( |
no test coverage detected