Polyglot SQL API Documentation - v0.6.2
    Preparing search index...

    Interface ComplexityGuardOptions

    interface ComplexityGuardOptions {
        maxAstDepth?: number | null;
        maxAstNodes?: number | null;
        maxFunctionCallDepth?: number | null;
        maxInputBytes?: number | null;
        maxParenthesisDepth?: number | null;
        maxTokens?: number | null;
    }
    Index

    Properties

    maxAstDepth?: number | null

    Maximum AST depth after parsing

    maxAstNodes?: number | null

    Maximum AST node count after parsing

    maxFunctionCallDepth?: number | null

    Maximum nested function-call depth before parsing

    maxInputBytes?: number | null

    Maximum SQL input size in bytes

    maxParenthesisDepth?: number | null

    Maximum nested parenthesis depth before parsing

    maxTokens?: number | null

    Maximum token count after tokenization