You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by "Thomas D'Silva (JIRA)" <ji...@apache.org> on 2016/02/18 06:16:18 UTC

[jira] [Commented] (PHOENIX-2689) VARCHAR Field Not Working With String Concatenation

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

Thomas D'Silva commented on PHOENIX-2689:
-----------------------------------------

+1 LGTM, with minor nit : your patch deleted LpadFunctionIT.java 

I will go though the Expression.evaluate methods and make sure there aren't similar issues. 




> VARCHAR Field Not Working With String Concatenation
> ---------------------------------------------------
>
>                 Key: PHOENIX-2689
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-2689
>             Project: Phoenix
>          Issue Type: Bug
>    Affects Versions: 4.6.0
>            Reporter: Steve T
>            Assignee: James Taylor
>            Priority: Minor
>             Fix For: 4.7.0
>
>         Attachments: PHOENIX-2689.patch
>
>
> Set up:
> {code:sql}
> create table BUGGY (PK1 integer, F1 varchar, F2 varchar, constraint PK primary key (PK1));
> upsert into BUGGY values(0, 'tortilla', 'chip');
> {code}
> This works as expected:
> {code:sql}
> select * from BUGGY where ('tortilla'||F2)='tortilla chip';
> PK1  0
> F1   tortilla
> F2   chip
> {code}
> But this does not:
> {code:sql}
> select * from BUGGY where (F1||F2)='tortilla chip';
> No rows selected (0.01 seconds)
> {code}



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