class SqlScriptingExecution extends AnyRef

SQL scripting executor - executes script and returns result statements. This supports returning multiple result statements from a single script. The caller of the SqlScriptingExecution API must wrap the interpretation and execution of statements with the withLocalVariableManager method, and adhere to the contract of executing the returned statement before continuing iteration. Executing the statement needs to be done inside withErrorHandling block.

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

Instance Constructors

  1. new SqlScriptingExecution(sqlScript: CompoundBody, session: classic.SparkSession, args: Map[String, Expression])

    sqlScript

    CompoundBody which need to be executed.

    session

    Spark session that SQL script is executed within.

    args

    A map of parameter names to SQL literal expressions.

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. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  9. def getNextResult: Option[classic.DataFrame]

    Advances through the script and executes statements until a result statement or end of script is encountered.

    Advances through the script and executes statements until a result statement or end of script is encountered.

    To know if there is result statement available, the method has to advance through script and execute statements until the result statement or end of script is encountered. For that reason the returned result must be executed before subsequent calls. Multiple calls without executing the intermediate results will lead to incorrect behavior.

    returns

    Result DataFrame if it is available, otherwise None.

  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. def withErrorHandling(f: => Unit): Unit
  21. def withLocalVariableManager[R](f: => R): R

    Handles scripting context creation/access/deletion.

    Handles scripting context creation/access/deletion. Calls to execution API must be wrapped with this method.

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