juliuszsompolski commented on a change in pull request #28991:
URL: https://github.com/apache/spark/pull/28991#discussion_r449595381
##########
File path:
sql/hive-thriftserver/v1.2/src/main/java/org/apache/hive/service/cli/OperationState.java
##########
@@ -32,7 +32,8 @@
CLOSED(TOperationState.CLOSED_STATE, true),
ERROR(TOperationState.ERROR_STATE, true),
UNKNOWN(TOperationState.UKNOWN_STATE, false),
- PENDING(TOperationState.PENDING_STATE, false);
+ PENDING(TOperationState.PENDING_STATE, false),
+ TIMEDOUT(TOperationState.CANCELED_STATE, true); //do not want to change
TOperationState in hive 1.2
Review comment:
This will not work and never be used with hive-1.2 anyway, because it's
not in HIVE_CLI_SERVICE_PROTOCOL_V8.
But adding the state here does not hurt, it allows it to compile with
hive-1.2.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]