AskSQL API Reference (core v0.10.0)
    Preparing search index...

    Interface RoutineInfo

    interface RoutineInfo {
        args: string;
        kind: "function" | "procedure";
        language?: string | null;
        name: string;
        returns?: string | null;
        schema?: string;
        securityDefiner?: boolean;
        source?: string | null;
        volatility: "immutable" | "stable" | "volatile" | "unknown";
    }
    Index
    args: string
    kind: "function" | "procedure"
    language?: string | null
    name: string
    returns?: string | null
    schema?: string
    securityDefiner?: boolean
    source?: string | null
    volatility: "immutable" | "stable" | "volatile" | "unknown"

    Only 'immutable' / 'stable' routines are callable in generated SQL.