[
https://issues.apache.org/jira/browse/HIVE-8283?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14151657#comment-14151657
]
Hive QA commented on HIVE-8283:
-------------------------------
{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/12671749/HIVE-8283.1.patch.txt
{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 6364 tests executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_schemeAuthority
{noformat}
Test results:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/1035/testReport
Console output:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/1035/console
Test logs:
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-1035/
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: 1 tests failed
{noformat}
This message is automatically generated.
ATTACHMENT ID: 12671749
> Missing break in FilterSelectivityEstimator#visitCall()
> -------------------------------------------------------
>
> Key: HIVE-8283
> URL: https://issues.apache.org/jira/browse/HIVE-8283
> Project: Hive
> Issue Type: Bug
> Reporter: Ted Yu
> Attachments: HIVE-8283.1.patch.txt
>
>
> {code}
> case NOT_EQUALS: {
> selectivity = computeNotEqualitySelectivity(call);
> }
> case LESS_THAN_OR_EQUAL:
> case GREATER_THAN_OR_EQUAL:
> case LESS_THAN:
> case GREATER_THAN: {
> selectivity = ((double) 1 / (double) 3);
> break;
> }
> {code}
> break is missing for NOT_EQUALS case. selectivity would be overwritten with
> 1/3.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)