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

Method call

src/sql-parser/src/ast/defs/expr.rs:1045–1053  ·  view source on GitHub ↗
(name: T::ItemName, args: Vec<Expr<T>>)

Source from the content-addressed store, hash-verified

1043 }
1044
1045 pub fn call(name: T::ItemName, args: Vec<Expr<T>>) -> Expr<T> {
1046 Expr::Function(Function {
1047 name,
1048 args: FunctionArgs::args(args),
1049 filter: None,
1050 over: None,
1051 distinct: false,
1052 })
1053 }
1054
1055 pub fn call_nullary(name: T::ItemName) -> Expr<T> {
1056 Expr::call(name, vec![])

Callers 2

test_requestFunction · 0.45
handle_connectionMethod · 0.45

Calls 1

FunctionClass · 0.85

Tested by 1

test_requestFunction · 0.36