[
https://issues.apache.org/jira/browse/HIVE-11529?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15948346#comment-15948346
]
Hive QA commented on HIVE-11529:
--------------------------------
Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12861144/HIVE-11529.6.patch
{color:green}SUCCESS:{color} +1 due to 3 test(s) being added or modified.
{color:red}ERROR:{color} -1 due to 3 failed/errored test(s), 10540 tests
executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[comments] (batchId=35)
org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[vector_if_expr]
(batchId=141)
org.apache.hive.hcatalog.api.TestHCatClient.testTransportFailure (batchId=172)
{noformat}
Test results: https://builds.apache.org/job/PreCommit-HIVE-Build/4457/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/4457/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-4457/
Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
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: 12861144 - PreCommit-HIVE-Build
> Loop optimization for SIMD in IfExprLong*Long*
> ----------------------------------------------
>
> Key: HIVE-11529
> URL: https://issues.apache.org/jira/browse/HIVE-11529
> Project: Hive
> Issue Type: Sub-task
> Components: Vectorization
> Reporter: Teddy Choi
> Assignee: Teddy Choi
> Priority: Minor
> Attachments: HIVE-11529.2.patch, HIVE-11529.3.patch,
> HIVE-11529.4.patch, HIVE-11529.5.patch, HIVE-11529.6.patch, HIVE-11529.patch
>
>
> HIVE-10238 showed that ?: operator can be optimized with bitwise operators
> when it only handles LongColumnVectors. There are more similar cases as
> following.
> IfExprLongColumnLongScalar: {code}outputVector[i] = (vector1[i] == 1 ?
> vector2[i] : arg3Scalar);{code}
> IfExprLongScalarLongColumn: {code}outputVector[i] = (vector1[i] == 1 ?
> arg2Scalar : vector3[i]);{code}
> IfExprLongScalarLongScalar: {code}outputVector[i] = (vector1[i] == 1 ?
> arg2Scalar : arg3Scalar);{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)