c

org.apache.kyuubi.operation

AbstractOperation

abstract class AbstractOperation extends Operation with Logging

Linear Supertypes
Logging, Operation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractOperation
  2. Logging
  3. Operation
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AbstractOperation(session: Session)

Abstract Value Members

  1. abstract def afterRun(): Unit
    Attributes
    protected
  2. abstract def beforeRun(): Unit
    Attributes
    protected
  3. abstract def cancel(): Unit
    Definition Classes
    AbstractOperationOperation
  4. abstract def close(): Unit
    Definition Classes
    AbstractOperationOperation
  5. abstract def getNextRowSetInternal(order: FetchOrientation, rowSetSize: Int): TFetchResultsResp
  6. abstract def getResultSetMetadata: TGetResultSetMetadataResp
    Definition Classes
    AbstractOperationOperation
  7. abstract def runInternal(): Unit
    Attributes
    protected
  8. abstract def shouldRunAsync: Boolean
    Definition Classes
    AbstractOperationOperation

Concrete 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 val OK_STATUS: TStatus
  5. def addTimeoutMonitor(queryTimeout: Long): Unit
    Attributes
    protected
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def assertState(state: OperationState): Unit
    Attributes
    protected
  8. def cleanup(targetState: OperationState): Unit
    Attributes
    protected
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. var completedTime: Long
    Attributes
    protected
  11. final val createTime: Long
    Attributes
    protected
  12. def debug(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  13. def debug(message: ⇒ Any): Unit
    Definition Classes
    Logging
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def error(message: ⇒ Any): Unit
    Definition Classes
    Logging
  17. def error(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def getBackgroundHandle: Future[_]
    Definition Classes
    AbstractOperationOperation
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def getHandle: OperationHandle
    Definition Classes
    AbstractOperationOperation
  22. def getNextRowSet(order: FetchOrientation, rowSetSize: Int): TFetchResultsResp
    Definition Classes
    AbstractOperationOperation
  23. def getOperationLog: Option[OperationLog]
    Definition Classes
    AbstractOperationOperation
  24. def getProtocolVersion: TProtocolVersion
    Attributes
    protected
  25. def getSession: Session
    Definition Classes
    AbstractOperationOperation
  26. def getStatus: OperationStatus
    Definition Classes
    AbstractOperationOperation
  27. val handle: OperationHandle
    Attributes
    protected
  28. var hasResultSet: Boolean
    Attributes
    protected
  29. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def info(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  31. def info(message: ⇒ Any): Unit
    Definition Classes
    Logging
  32. def initializeLoggerIfNecessary(isInterpreter: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Logging
  33. def isClosedOrCanceled: Boolean
    Attributes
    protected
  34. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  35. def isTerminalState(operationState: OperationState): Boolean
    Attributes
    protected
  36. def isTimedOut: Boolean
    Definition Classes
    AbstractOperationOperation
  37. var lastAccessTime: Long
    Attributes
    protected
  38. def logger: Logger
    Attributes
    protected
    Definition Classes
    Logging
  39. def loggerName: String
    Attributes
    protected
    Definition Classes
    Logging
  40. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  41. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  43. def okStatusWithHints(hints: Seq[String]): TStatus
  44. final val opType: String
    Attributes
    protected
  45. var operationException: KyuubiSQLException
    Attributes
    protected
  46. var operationJobProgress: TProgressUpdateResp
    Attributes
    protected
  47. def redactedStatement: String
  48. def run(): Unit
    Definition Classes
    AbstractOperationOperation
  49. def setBackgroundHandle(backgroundHandle: Future[_]): Unit
    Attributes
    protected
  50. def setHasResultSet(hasResultSet: Boolean): Unit
    Attributes
    protected
  51. def setOperationException(opEx: KyuubiSQLException): Unit
    Attributes
    protected
  52. def setOperationJobProgress(opJobProgress: TProgressUpdateResp): Unit
  53. def setState(newState: OperationState): Unit
    Attributes
    protected
  54. def shutdownTimeoutMonitor(): Unit
    Attributes
    protected
  55. var startTime: Long
    Attributes
    protected
  56. var state: OperationState
    Attributes
    protected
  57. def statement: String
  58. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  59. def toJavaRegex(input: String): String

    convert SQL 'like' pattern to a Java regular expression.

    convert SQL 'like' pattern to a Java regular expression.

    Underscores (_) are converted to '.' and percent signs (%) are converted to '.*'.

    (referred to Spark's implementation: convertPattern function in file MetadataOperation.java)

    input

    the SQL pattern to convert

    returns

    the equivalent Java regular expression of the pattern

    Attributes
    protected
  60. def toString(): String
    Definition Classes
    AnyRef → Any
  61. def validateDefaultFetchOrientation(orientation: FetchOrientation): Unit

    Verify if the given fetch orientation is part of the default orientation types.

    Verify if the given fetch orientation is part of the default orientation types.

    Attributes
    protected
  62. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  63. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  65. def warn(message: ⇒ Any, t: Throwable): Unit
    Definition Classes
    Logging
  66. def warn(message: ⇒ Any): Unit
    Definition Classes
    Logging
  67. def withLockRequired[T](block: ⇒ T): T
    Attributes
    protected

Inherited from Logging

Inherited from Operation

Inherited from AnyRef

Inherited from Any

Ungrouped