[ https://issues.apache.org/jira/browse/HIVE-11529?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14990001#comment-14990001 ]
Hive QA commented on HIVE-11529: -------------------------------- Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12770543/HIVE-11529.2.patch {color:green}SUCCESS:{color} +1 due to 2 test(s) being added or modified. {color:red}ERROR:{color} -1 due to 7 failed/errored test(s), 9768 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_tez_union_with_udf org.apache.hadoop.hive.cli.TestHBaseCliDriver.testCliDriver_hbase_queries org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver_tez_union_with_udf org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_schemeAuthority2 org.apache.hadoop.hive.cli.TestNegativeCliDriver.testNegativeCliDriver_authorization_uri_import org.apache.hadoop.hive.hwi.TestHWISessionManager.testHiveDriver org.apache.hive.jdbc.TestSSL.testSSLVersion {noformat} Test results: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/5917/testReport Console output: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/5917/console Test logs: http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-5917/ 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: 7 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12770543 - PreCommit-HIVE-TRUNK-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.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.4#6332)