MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / Func

Enum Func

src/sql/src/func.rs:1748–1754  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1746
1747#[derive(Debug)]
1748pub 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
1756impl Func {
1757 pub fn func_impls(&self) -> Vec<FuncImplCatalogDetails> {

Callers 5

plan_aggregate_commonFunction · 0.50
plan_functionFunction · 0.50
plan_commentFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected