@databricks/sql
Version:
Driver for connection to Databricks SQL via Thrift API.
15 lines (14 loc) • 529 B
TypeScript
import HiveDriverError from './HiveDriverError';
import { TGetOperationStatusResp } from '../../thrift/TCLIService_types';
export declare enum OperationStateErrorCode {
Canceled = "CANCELED",
Closed = "CLOSED",
Error = "ERROR",
Timeout = "TIMEOUT",
Unknown = "UNKNOWN"
}
export default class OperationStateError extends HiveDriverError {
errorCode: OperationStateErrorCode;
response?: TGetOperationStatusResp;
constructor(errorCode: OperationStateErrorCode, response?: TGetOperationStatusResp);
}