Databricks SDK for JavaScript
    Preparing search index...

    Interface SqlConditionRunInfoDetails

    SQL condition evaluation details captured at the time the run was triggered

    interface SqlConditionRunInfoDetails {
        conditionEvaluationSatisfied?: boolean;
        conditionEvaluationSqlSessionId?: string;
        conditionEvaluationSqlStatementId?: string;
    }
    Index

    Properties

    conditionEvaluationSatisfied?: boolean

    Whether the last condition evaluation was satisfied (query returned truthy result).

    conditionEvaluationSqlSessionId?: string

    The ID of the SQL session, used by the UI to track session context. Set for the QUERY_RETURNS_ROWS trigger mode.

    conditionEvaluationSqlStatementId?: string

    The SQL statement ID of the condition evaluation, set when the condition is evaluated by running a single SQL statement (the RESULT_VALUE_CHANGES trigger mode). The UI uses it to link to the query execution details.