You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Hyoungjun Kim (JIRA)" <ji...@apache.org> on 2014/07/17 20:09:05 UTC

[jira] [Created] (TAJO-956) CONCAT should be support multiple params and null param.

Hyoungjun Kim created TAJO-956:
----------------------------------

             Summary: CONCAT should be support multiple params and null param.
                 Key: TAJO-956
                 URL: https://issues.apache.org/jira/browse/TAJO-956
             Project: Tajo
          Issue Type: Improvement
            Reporter: Hyoungjun Kim
            Assignee: Hyoungjun Kim
            Priority: Trivial


Currently Tajo's CONCAT function doesn't support multiple parameters and null parameter.
{noformat}
default> select concat('aaa', 'bbb', 'ccc');
ERROR: function concat(text,text,text) does not exist
default>
{noformat}

CONCAT function can be defined as follows.
{noformat}
default> select concat(null, 'aaa', null, 'bbb', 'ccc');
 concat
--------
 aaabbbccc
{noformat}



--
This message was sent by Atlassian JIRA
(v6.2#6252)