c

org.apache.spark.sql.scripting

SqlScriptingExecutionScope

class SqlScriptingExecutionScope extends AnyRef

SQL scripting execution scope - keeps track of the current execution scope.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SqlScriptingExecutionScope
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SqlScriptingExecutionScope(label: String, triggerToExceptionHandlerMap: TriggerToExceptionHandlerMap)

    label

    Label of the scope.

    triggerToExceptionHandlerMap

    Object holding condition/sqlState/sqlexception/not found to handler mapping.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def findHandler(condition: String, sqlState: String): Option[ExceptionHandlerExec]

    Finds the most appropriate error handler for exception based on its condition and SQL state.

    Finds the most appropriate error handler for exception based on its condition and SQL state.

    The method follows these rules to determine the most appropriate handler: 1. Specific named condition handlers (e.g., DIVIDE_BY_ZERO) are checked first. 2. If no specific condition handler is found, SQLSTATE handlers are checked. 3. For SQLSTATEs starting with '02', a generic NOT FOUND handler is used if available. 4. For other SQLSTATEs (except those starting with 'XX' or '02'), a generic SQLEXCEPTION handler is used if available.

    Note: Handlers defined in the innermost compound statement where the exception was raised are considered.

    condition

    Error condition of the exception to find handler for.

    sqlState

    SQLSTATE of the exception to find handler for.

    returns

    Handler for the given condition if exists.

  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. val label: String
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. val triggerToExceptionHandlerMap: TriggerToExceptionHandlerMap
  19. val variables: HashMap[String, VariableDefinition]
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped