[
https://issues.apache.org/jira/browse/PHOENIX-2944?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15413120#comment-15413120
]
Hadoop QA commented on PHOENIX-2944:
------------------------------------
{color:red}-1 overall{color}. Here are the results of testing the latest
attachment
http://issues.apache.org/jira/secure/attachment/12822727/PHOENIX-2944.patch
against master branch at commit ba82b1cb5a14c2cf109deb8a862389142d92f541.
ATTACHMENT ID: 12822727
{color:green}+1 @author{color}. The patch does not contain any @author
tags.
{color:red}-1 tests included{color}. The patch doesn't appear to include
any new or modified tests.
Please justify why no new tests are needed for this
patch.
Also please list what manual steps were performed to
verify this patch.
{color:green}+1 javac{color}. The applied patch does not increase the
total number of javac compiler warnings.
{color:red}-1 javadoc{color}. The javadoc tool appears to have generated
34 warning messages.
{color:green}+1 release audit{color}. The applied patch does not increase
the total number of release audit warnings.
{color:green}+1 lineLengths{color}. The patch does not introduce lines
longer than 100
{color:green}+1 core tests{color}. The patch passed unit tests in .
Test results:
https://builds.apache.org/job/PreCommit-PHOENIX-Build/502//testReport/
Javadoc warnings:
https://builds.apache.org/job/PreCommit-PHOENIX-Build/502//artifact/patchprocess/patchJavadocWarnings.txt
Console output:
https://builds.apache.org/job/PreCommit-PHOENIX-Build/502//console
This message is automatically generated.
> DATE Comparison Broken
> ----------------------
>
> Key: PHOENIX-2944
> URL: https://issues.apache.org/jira/browse/PHOENIX-2944
> Project: Phoenix
> Issue Type: Bug
> Affects Versions: 4.7.0
> Reporter: Aaron Stephens
> Assignee: Saurabh Seth
> Priority: Critical
> Labels: Phoenix
> Fix For: 4.8.1
>
> Attachments: PHOENIX-2944.patch
>
>
> It appears that comparisons involving the DATE type are broken. See examples
> below:
> {noformat}
> > select DATE '2016-05-10 00:00:00' > DATE '2016-05-11 00:00:00';
> >
> +-------+
>
> | true |
>
> +-------+
>
> | true |
>
> +-------+
>
> 1 row selected (0.001 seconds)
> > select TIMESTAMP '2016-05-10 00:00:00' > DATE '2016-05-11 00:00:00';
> >
> +-------+
>
> | true |
>
> +-------+
>
> | true |
>
> +-------+
>
> 1 row selected (0.001 seconds)
> > select DATE '2016-05-10 00:00:00' > TIMESTAMP '2016-05-11 00:00:00';
> >
> +-------+
>
> | true |
>
> +-------+
>
> | true |
>
> +-------+
> 1 row selected (0.001 seconds)
> > select TIMESTAMP '2016-05-10 00:00:00' > TIMESTAMP '2016-05-11 00:00:00';
> >
> +--------+
>
> | false |
>
> +--------+
>
> | false |
>
> +--------+
>
> 1 row selected (0.001 seconds)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)