[ https://issues.apache.org/jira/browse/HIVE-11529?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15854101#comment-15854101 ]
Hive QA commented on HIVE-11529: -------------------------------- Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12851155/HIVE-11529.4.patch {color:green}SUCCESS:{color} +1 due to 2 test(s) being added or modified. {color:red}ERROR:{color} -1 due to 10 failed/errored test(s), 10211 tests executed *Failed tests:* {noformat} TestDerbyConnector - did not produce a TEST-*.xml file (likely timed out) (batchId=235) TestSparkCliDriver - did not produce a TEST-*.xml file (likely timed out) (batchId=117) [join39.q,bucketsortoptimize_insert_7.q,vector_distinct_2.q,bucketmapjoin10.q,join11.q,union13.q,auto_sortmerge_join_16.q,windowing.q,union_remove_3.q,skewjoinopt7.q,stats7.q,annotate_stats_join.q,multi_insert_lateral_view.q,ptf_streaming.q,join_1to1.q] org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[constprog_when_case] (batchId=53) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[vector_if_expr] (batchId=10) org.apache.hadoop.hive.cli.TestEncryptedHDFSCliDriver.testCliDriver[encryption_join_with_different_encryption_keys] (batchId=159) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[vector_char_simple] (batchId=147) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[vector_if_expr] (batchId=140) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[vector_varchar_simple] (batchId=153) org.apache.hadoop.hive.llap.daemon.impl.TestTaskExecutorService.testWaitQueuePreemption (batchId=277) org.apache.hadoop.hive.ql.exec.vector.TestVectorizationContext.testIfConditionalExprs (batchId=259) {noformat} Test results: https://builds.apache.org/job/PreCommit-HIVE-Build/3395/testReport Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/3395/console Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-3395/ 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: 10 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12851155 - 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.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)