Member Junction
    Preparing search index...

    Combined result of parsing SQL for table and column references. This is the original SQLParser.Parse() return type, preserved for backward compatibility.

    interface SQLParseResult {
        Columns: SQLColumnReference[];
        Tables: SQLTableReference[];
        UsedASTParsing: boolean;
    }
    Index

    Properties

    All column references found (SELECT, WHERE, JOIN ON, GROUP BY, ORDER BY)

    All table/view references found (FROM, JOIN, subqueries, CTEs)

    UsedASTParsing: boolean

    Whether parsing succeeded via AST (true) or fell back to regex (false)