Skip to main content

FunctionInfoRead

Trait FunctionInfoRead 

Source
pub trait FunctionInfoRead {
    // Required method
    fn get_function_impl(
        &self,
        name: &FullName,
    ) -> Option<FunctionOverloadCollection>;
}
Expand description

get function definition

Required Methods§

Source

fn get_function_impl( &self, name: &FullName, ) -> Option<FunctionOverloadCollection>

get CREATE FUNCTION statement by function name

Implementors§

Source§

impl FunctionInfoRead for BaseContext

Source§

impl<TBaseContext> FunctionInfoRead for SchemaFileContext<TBaseContext>
where TBaseContext: BaseParseContext + Debug,

Source§

impl<TContext> FunctionInfoRead for ParsedSchemaDump<TContext>
where TContext: BaseParseContext + Debug,