Comunica
    Preparing search index...

    Interface ILogOperationArgs

    interface ILogOperationArgs {
        actor?: string;
        logicalOperator: string;
        metadata?: any;
        operation?: any;
        parentNode?: IPhysicalQueryPlanNode;
        physicalOperator?: string;
        repeated?: boolean;
    }
    Index

    Properties

    actor?: string

    The current actor name, if an actor is responsible for this node.

    logicalOperator: string

    The current logical query operator.

    metadata?: any

    Metadata to include together in the physical query plan output for this node.

    operation?: any

    The algebra operation this node was created for, if any. This is used to derive logical details such as the triple pattern or the projected variables.

    The node this operation is executed within, or undefined for the root of the plan.

    physicalOperator?: string

    The current physical query operator. This may be omitted if no physical operator applies.

    repeated?: boolean

    If the operations executed within this node are repeated evaluations of the same operation, such as the per-binding evaluations of a bind join.

    Such repetitions are summarized rather than listed one by one. Logging a repeated node more than once under the same parent, with the same operator and actor, yields the same node.