All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.databricks.sdk.service.sql.StatementState Maven / Gradle / Ivy

There is a newer version: 0.35.0
Show newest version
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.

package com.databricks.sdk.service.sql;

import com.databricks.sdk.support.Generated;

/**
 * Statement execution state: - `PENDING`: waiting for warehouse - `RUNNING`: running - `SUCCEEDED`:
 * execution was successful, result data available for fetch - `FAILED`: execution failed; reason
 * for failure described in accomanying error message - `CANCELED`: user canceled; can come from
 * explicit cancel call, or timeout with `on_wait_timeout=CANCEL` - `CLOSED`: execution successful,
 * and statement closed; result no longer available for fetch
 */
@Generated
public enum StatementState {
  CANCELED, // user canceled; can come from explicit cancel call, or timeout with
  // `on_wait_timeout=CANCEL`
  CLOSED, // execution successful, and statement closed; result no longer available for
  // fetch
  FAILED, // execution failed; reason for failure described in accomanying error message
  PENDING, // waiting for warehouse
  RUNNING, // running
  SUCCEEDED, // execution was successful, result data available for fetch
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy