Packages

object GraphErrors

Collection of errors that can be thrown during graph resolution / analysis.

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

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 hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. def incompatibleUserSpecifiedAndInferredSchemasError(tableIdentifier: TableIdentifier, datasetType: DatasetType, specifiedSchema: StructType, inferredSchema: StructType, cause: Option[Throwable] = None): AnalysisException

    Throws an error if the user-specified schema and the inferred schema are not compatible.

    Throws an error if the user-specified schema and the inferred schema are not compatible.

    tableIdentifier

    the identifier of the table that was not found

  11. def invalidNameInUseCommandError(command: String, name: String, reason: String): SparkException

    Throws when the catalog or schema name in the "USE CATALOG | SCHEMA" command is invalid

    Throws when the catalog or schema name in the "USE CATALOG | SCHEMA" command is invalid

    command

    string "USE CATALOG" or "USE SCHEMA"

    name

    the invalid catalog or schema name

    reason

    the reason why the name is invalid

  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  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. def pipelineLocalDatasetNotDefinedError(datasetName: String): SparkException

    Throws when a dataset is marked as internal but is not defined in the graph.

    Throws when a dataset is marked as internal but is not defined in the graph.

    datasetName

    the name of the dataset that is not defined

  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. def unableToInferSchemaError(tableIdentifier: TableIdentifier, inferredSchema: StructType, incompatibleSchema: StructType, cause: Option[Throwable] = None): AnalysisException

    Throws if the latest inferred schema for a pipeline table is not compatible with the table's existing schema.

    Throws if the latest inferred schema for a pipeline table is not compatible with the table's existing schema.

    tableIdentifier

    the identifier of the table that was not found

  20. def unresolvedTablePath(identifier: TableIdentifier): SparkException

    Throws when a table path is unresolved, i.e.

    Throws when a table path is unresolved, i.e. the table identifier does not exist in the catalog.

    identifier

    the unresolved table identifier

  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  23. 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