[
https://issues.apache.org/jira/browse/TAJO-348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13837268#comment-13837268
]
Keuntae Park commented on TAJO-348:
-----------------------------------
This patch didn't pass 'mvn clean install'
I think following code in TajoMaster.java
{noformat}
sqlFuncs.add(
new FunctionDesc("octet_length", OctetLength.class,
FunctionType.GENERAL,
CatalogUtil.newSimpleDataType(Type.TEXT),
CatalogUtil.newSimpleDataTypeArray(Type.INT4)));
{noformat}
should be
{noformat}
sqlFuncs.add(
new FunctionDesc("octet_length", OctetLength.class,
FunctionType.GENERAL,
CatalogUtil.newSimpleDataType(Type.INT4),
CatalogUtil.newSimpleDataTypeArray(Type.TEXT)));
{noformat}
> Implement octet_length(text)
> ----------------------------
>
> Key: TAJO-348
> URL: https://issues.apache.org/jira/browse/TAJO-348
> Project: Tajo
> Issue Type: Sub-task
> Components: operator/function/udf
> Reporter: DaeMyung Kang
> Assignee: DaeMyung Kang
> Priority: Minor
> Fix For: 0.8-incubating
>
> Attachments: TAJO-348.2.patch, TAJO-348.3.patch, TAJO-348.patch
>
>
> octet_length function returns byte size of text.
--
This message was sent by Atlassian JIRA
(v6.1#6144)