| 1746 | |
| 1747 | #[derive(Debug)] |
| 1748 | pub enum Func { |
| 1749 | Scalar(Vec<FuncImpl<HirScalarExpr>>), |
| 1750 | Aggregate(Vec<FuncImpl<(HirScalarExpr, AggregateFunc)>>), |
| 1751 | Table(Vec<FuncImpl<TableFuncPlan>>), |
| 1752 | ScalarWindow(Vec<FuncImpl<ScalarWindowFunc>>), |
| 1753 | ValueWindow(Vec<FuncImpl<(HirScalarExpr, ValueWindowFunc)>>), |
| 1754 | } |
| 1755 | |
| 1756 | impl Func { |
| 1757 | pub fn func_impls(&self) -> Vec<FuncImplCatalogDetails> { |
no outgoing calls
no test coverage detected