[
https://issues.apache.org/jira/browse/HIVE-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14903934#comment-14903934
]
Hive QA commented on HIVE-10238:
--------------------------------
{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/12761592/HIVE-10238.3.patch
{color:red}ERROR:{color} -1 due to 6 failed/errored test(s), 9561 tests executed
*Failed tests:*
{noformat}
TestMiniTezCliDriver-auto_sortmerge_join_13.q-tez_self_join.q-orc_vectorization_ppd.q-and-12-more
- did not produce a TEST-*.xml file
org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_vector_groupby_reduce
org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver_vector_groupby_reduce
org.apache.hive.hcatalog.api.TestHCatClient.testTableSchemaPropagation
org.apache.hive.hcatalog.streaming.TestStreaming.testInterleavedTransactionBatchCommits
org.apache.hive.hcatalog.streaming.TestStreaming.testTransactionBatchCommit_Json
{noformat}
Test results:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/5379/testReport
Console output:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/5379/console
Test logs:
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-5379/
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: 6 tests failed
{noformat}
This message is automatically generated.
ATTACHMENT ID: 12761592 - PreCommit-HIVE-TRUNK-Build
> Loop optimization for SIMD in IfExprColumnColumn.txt
> ----------------------------------------------------
>
> Key: HIVE-10238
> URL: https://issues.apache.org/jira/browse/HIVE-10238
> Project: Hive
> Issue Type: Sub-task
> Components: Vectorization
> Affects Versions: 1.1.0
> Reporter: Chengxiang Li
> Assignee: Teddy Choi
> Priority: Minor
> Attachments: HIVE-10238.2.patch, HIVE-10238.3.patch, HIVE-10238.patch
>
>
> The ?: operator as following could not be vectorized in loop, we may transfer
> it into mathematical expression.
> {code:java}
> for(int j = 0; j != n; j++) {
> int i = sel[j];
> outputVector[i] = (vector1[i] == 1 ? vector2[i] : vector3[i]);
> outputIsNull[i] = (vector1[i] == 1 ?
> arg2ColVector.isNull[i] : arg3ColVector.isNull[i]);
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)