[
https://issues.apache.org/jira/browse/HIVE-10619?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14533299#comment-14533299
]
Hive QA commented on HIVE-10619:
--------------------------------
{color:red}Overall{color}: -1 at least one tests failed
Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12731029/HIVE-10619.1.patch
{color:red}ERROR:{color} -1 due to 3 failed/errored test(s), 8910 tests executed
*Failed tests:*
{noformat}
TestSparkClient - did not produce a TEST-*.xml file
org.apache.hadoop.hive.thrift.TestHadoop20SAuthBridge.testSaslWithHiveMetaStore
org.apache.hive.jdbc.TestSSL.testSSLFetchHttp
{noformat}
Test results:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/3801/testReport
Console output:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/3801/console
Test logs:
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-3801/
Messages:
{noformat}
Executing org.apache.hive.ptest.execution.PrepPhase
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: 12731029 - PreCommit-HIVE-TRUNK-Build
> Fix ConcurrentHashMap.get in MetadataListStructObjectInspector.getInstance
> (52)
> -------------------------------------------------------------------------------
>
> Key: HIVE-10619
> URL: https://issues.apache.org/jira/browse/HIVE-10619
> Project: Hive
> Issue Type: Bug
> Components: Serializers/Deserializers
> Reporter: Alexander Pivovarov
> Assignee: Alexander Pivovarov
> Priority: Minor
> Attachments: HIVE-10619.1.patch, rb33878.patch
>
>
> cached.get(columnNames) should be replaced with cached.get(key) in the code
> block below
> {code}
> cached = new ConcurrentHashMap<List<List<String>>,
> MetadataListStructObjectInspector>();
> public static MetadataListStructObjectInspector getInstance(
> List<String> columnNames) {
> ArrayList<List<String>> key = new ArrayList<List<String>>(1);
> key.add(columnNames);
> MetadataListStructObjectInspector result = cached.get(columnNames);
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)