[
https://issues.apache.org/jira/browse/TAJO-956?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14067910#comment-14067910
]
ASF GitHub Bot commented on TAJO-956:
-------------------------------------
Github user hyunsik commented on the pull request:
https://github.com/apache/tajo/pull/81#issuecomment-49545196
+1
The patch looks good to me.
> 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)