Packages

object GpuOrcScan extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GpuOrcScan
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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 canCast(from: TypeDescription, to: TypeDescription, isOrcFloatTypesToStringEnable: Boolean): Boolean

    Whether the type casting is supported by GPU ORC reading.

    Whether the type casting is supported by GPU ORC reading.

    No need to support the whole list that CPU does in "ConvertTreeReaderFactory.canConvert", but the ones between GPU supported types. Each supported casting is implemented in "castColumnTo".

  6. def castColumnTo(col: ColumnView, targetType: DataType, originalFromDt: DataType): ColumnView

    Cast the column to the target type for ORC schema evolution.

    Cast the column to the target type for ORC schema evolution. It is designed to support all the cases that canCast returns true. Both of the column type and target type should be primitive.

    The returned column may be either the input or a new one, users should check and close it when needed.

  7. def castIntegersToTimestamp(col: ColumnView, colType: DType, timeUnit: DType): ColumnVector

    Convert the integer vector into timestamp(microseconds) vector.

    Convert the integer vector into timestamp(microseconds) vector.

    col

    The integer columnar vector.

    colType

    Specific integer type, it should be BOOL/INT8/INT16/INT32/INT64.

    timeUnit

    It should be one of {DType.TIMESTAMP_SECONDS, DType.TIMESTAMP_MILLISECONDS}. If timeUnit == SECONDS, then we consider the integers as seconds. If timeUnit == MILLISECONDS, then we consider the integers as milliseconds. This parameter is determined by the shims.

    returns

    A timestamp vector.

  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def tagSupport(sparkSession: SparkSession, schema: StructType, meta: RapidsMeta[_, _, _]): Unit
  20. def tagSupport(scanMeta: ScanMeta[OrcScan]): Unit
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped