[jira] [Commented] (HIVE-5744) Implement support for BETWEEN in SELECT list

2014-12-16 Thread Navis (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-5744?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14249331#comment-14249331
 ] 

Navis commented on HIVE-5744:
-

I apparently I've forgot to update result of vector_between_in. Others are 
well-known not-related. Could anyone review this?

> Implement support for BETWEEN in SELECT list
> 
>
> Key: HIVE-5744
> URL: https://issues.apache.org/jira/browse/HIVE-5744
> Project: Hive
>  Issue Type: Sub-task
>Reporter: Eric Hanson
>Assignee: Navis
> Attachments: HIVE-5744.1.patch.txt, HIVE-5744.2.patch.txt
>
>
> Queries like 
> SELECT col1 BETWEEN 0 and 10 from T;
> fail in vectorized mode. Support needs to be implemented for a BETWEEN 
> expression in the SELECT list, comparable to how it was added for comparison 
> operators (<, >, ...). These were done by adding new, templates that return a 
> value for a comparison instead of applying a filter. See 
> ColumnCompareScalar.txt under ql/src/gen for an example.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-5744) Implement support for BETWEEN in SELECT list

2014-12-16 Thread Hive QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-5744?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14249147#comment-14249147
 ] 

Hive QA commented on HIVE-5744:
---



{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/12687407/HIVE-5744.2.patch.txt

{color:red}ERROR:{color} -1 due to 4 failed/errored test(s), 6713 tests executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_vector_partition_diff_num_cols
org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver_optimize_nullscan
org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver_vector_between_in
org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver_vector_partition_diff_num_cols
{noformat}

Test results: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/2095/testReport
Console output: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/2095/console
Test logs: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-2095/

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: 4 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12687407 - PreCommit-HIVE-TRUNK-Build

> Implement support for BETWEEN in SELECT list
> 
>
> Key: HIVE-5744
> URL: https://issues.apache.org/jira/browse/HIVE-5744
> Project: Hive
>  Issue Type: Sub-task
>Reporter: Eric Hanson
>Assignee: Navis
> Attachments: HIVE-5744.1.patch.txt, HIVE-5744.2.patch.txt
>
>
> Queries like 
> SELECT col1 BETWEEN 0 and 10 from T;
> fail in vectorized mode. Support needs to be implemented for a BETWEEN 
> expression in the SELECT list, comparable to how it was added for comparison 
> operators (<, >, ...). These were done by adding new, templates that return a 
> value for a comparison instead of applying a filter. See 
> ColumnCompareScalar.txt under ql/src/gen for an example.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-5744) Implement support for BETWEEN in SELECT list

2014-09-16 Thread Hive QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-5744?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14136694#comment-14136694
 ] 

Hive QA commented on HIVE-5744:
---



{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/12668997/HIVE-5744.1.patch.txt

{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 6279 tests executed
*Failed tests:*
{noformat}
org.apache.hive.hcatalog.pig.TestOrcHCatLoader.testReadDataPrimitiveTypes
{noformat}

Test results: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/832/testReport
Console output: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/832/console
Test logs: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-832/

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: 12668997

> Implement support for BETWEEN in SELECT list
> 
>
> Key: HIVE-5744
> URL: https://issues.apache.org/jira/browse/HIVE-5744
> Project: Hive
>  Issue Type: Sub-task
>Reporter: Eric Hanson
>Assignee: Navis
> Attachments: HIVE-5744.1.patch.txt
>
>
> Queries like 
> SELECT col1 BETWEEN 0 and 10 from T;
> fail in vectorized mode. Support needs to be implemented for a BETWEEN 
> expression in the SELECT list, comparable to how it was added for comparison 
> operators (<, >, ...). These were done by adding new, templates that return a 
> value for a comparison instead of applying a filter. See 
> ColumnCompareScalar.txt under ql/src/gen for an example.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)