Member Junction
    Preparing search index...

    Pipeline trace capturing the SQL state after each pass. Used for error diagnosis — when SQL Server rejects the output, the caller can see what each pass produced to identify which pass mangled the SQL.

    interface RenderTrace {
        AfterComposition: string;
        AfterPaging: string | null;
        AfterTemplates: string;
        CompositionDiagnostics: CompositionDiagnostic[];
    }
    Index

    Properties

    AfterComposition: string

    SQL after composition ({{ }}/{% %} tokens still present)

    AfterPaging: string | null

    SQL after paging (final) — only set if paging was applied

    AfterTemplates: string

    SQL after Nunjucks template evaluation (fully resolved, executable)

    CompositionDiagnostics: CompositionDiagnostic[]

    Composition metadata: which deps resolved, which CTEs generated