Packages

c

org.apache.spark.sql.scripting

IterateStatementExec

class IterateStatementExec extends LeafStatementExec

Executable node for ITERATE statement.

Source
SqlScriptingExecutionNode.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IterateStatementExec
  2. LeafStatementExec
  3. CompoundStatementExec
  4. Logging
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new IterateStatementExec(label: String)

    label

    Label of the loop to iterate.

Type Members

  1. implicit class LogStringContext extends AnyRef
    Definition Classes
    Logging

Value Members

  1. var hasBeenMatched: Boolean

    Label specified in the ITERATE statement might not belong to the immediate compound, but to the any surrounding compound.

    Label specified in the ITERATE statement might not belong to the immediate compound, but to the any surrounding compound. Iteration logic is recursive, i.e. when iterating through the compound, if another compound is encountered, next() will be called to iterate its body. The same logic is applied to any other compound down the tree. In such cases, when ITERATE statement is encountered (as the leaf of the traversal tree), it will be propagated upwards and the logic will try to match it to the labels of surrounding compounds. Once the match is found, this flag is set to true to indicate that search should be stopped.

  2. val isInternal: Boolean

    Whether the statement originates from the SQL script or is created during the interpretation.

    Whether the statement originates from the SQL script or is created during the interpretation. Example: DropVariable statements are automatically created at the end of each compound.

    Definition Classes
    CompoundStatementExec
  3. val label: String
  4. def reset(): Unit

    Reset execution of the current node.

    Reset execution of the current node.

    Definition Classes
    IterateStatementExecCompoundStatementExec