[ https://issues.apache.org/jira/browse/HIVE-22750?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17078705#comment-17078705 ]
Hive QA commented on HIVE-22750: -------------------------------- Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12999344/HIVE-22750.12.patch {color:green}SUCCESS:{color} +1 due to 4 test(s) being added or modified. {color:red}ERROR:{color} -1 due to 3 failed/errored test(s), 18192 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.ql.parse.TestStatsReplicationScenariosACID.org.apache.hadoop.hive.ql.parse.TestStatsReplicationScenariosACID (batchId=262) org.apache.hadoop.hive.ql.schq.TestScheduledQueryStatements.testExecuteImmediate (batchId=359) org.apache.hive.jdbc.TestActivePassiveHA.testActivePassiveHA (batchId=292) {noformat} Test results: https://builds.apache.org/job/PreCommit-HIVE-Build/21517/testReport Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/21517/console Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-21517/ Messages: {noformat} Executing org.apache.hive.ptest.execution.TestCheckPhase Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.YetusPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase Tests exited with: TestsFailedException: 3 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12999344 - PreCommit-HIVE-Build > Consolidate LockType naming > --------------------------- > > Key: HIVE-22750 > URL: https://issues.apache.org/jira/browse/HIVE-22750 > Project: Hive > Issue Type: Improvement > Components: Transactions > Reporter: Zoltan Chovan > Assignee: Marton Bod > Priority: Minor > Attachments: HIVE-22750.1.patch, HIVE-22750.10.patch, > HIVE-22750.11.patch, HIVE-22750.12.patch, HIVE-22750.2.patch, > HIVE-22750.3.patch, HIVE-22750.4.patch, HIVE-22750.5.patch, > HIVE-22750.5.patch, HIVE-22750.6.patch, HIVE-22750.7.patch, > HIVE-22750.8.patch, HIVE-22750.9.patch, HIVE-22750.9.patch, > HIVE-22750.9.patch, HIVE-22750.9.patch > > > Extend enum with string literal to remove unnecessary `id` to `char` casting > for the LockType: > {code:java} > switch (lockType) { > case EXCLUSIVE: > lockChar = LOCK_EXCLUSIVE; > break; > case SHARED_READ: > lockChar = LOCK_SHARED; > break; > case SHARED_WRITE: > lockChar = LOCK_SEMI_SHARED; > break; > } > {code} > Consolidate LockType naming in code and schema upgrade scripts: > {code:java} > CASE WHEN HL.`HL_LOCK_TYPE` = 'e' THEN 'exclusive' WHEN HL.`HL_LOCK_TYPE` = > 'r' THEN 'shared' WHEN HL.`HL_LOCK_TYPE` = 'w' THEN *'semi-shared'* END AS > LOCK_TYPE, > {code} > +*Lock types:*+ > EXCLUSIVE > EXCL_WRITE > SHARED_WRITE > SHARED_READ -- This message was sent by Atlassian Jira (v8.3.4#803005)