Versions in this module Expand all Collapse all v0 v0.1.0 Oct 24, 2025 Changes in this version + type FunctionStatement struct + InputVariables []any + IsPartOfQuery bool + IsTVF bool + Name string + func Function(name string, args ...any) FunctionStatement + func (f FunctionStatement) Parameters() []any + func (f FunctionStatement) String() string + type ProcedureStatement struct + InputVariables []any + Name string + OutputVarNames []string + func Procedure(name string) *ProcedureStatement + func (p *ProcedureStatement) Input(variables ...any) *ProcedureStatement + func (p *ProcedureStatement) OutputNames(variables ...string) *ProcedureStatement + func (p ProcedureStatement) Parameters() []any