You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Clemens Valiente (JIRA)" <ji...@apache.org> on 2017/12/27 11:15:00 UTC

[jira] [Updated] (HIVE-14759) GenericUDF.getFuncName breaks with UDF Classnames less than 10 characters

     [ https://issues.apache.org/jira/browse/HIVE-14759?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Clemens Valiente updated HIVE-14759:
------------------------------------
    Attachment: HIVE-14759.patch

> GenericUDF.getFuncName breaks with UDF Classnames less than 10 characters
> -------------------------------------------------------------------------
>
>                 Key: HIVE-14759
>                 URL: https://issues.apache.org/jira/browse/HIVE-14759
>             Project: Hive
>          Issue Type: Bug
>          Components: UDF
>    Affects Versions: 2.1.0
>            Reporter: Clemens Valiente
>            Assignee: Clemens Valiente
>            Priority: Trivial
>         Attachments: HIVE-14759.patch
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> {code}
> return getClass().getSimpleName().substring(10).toLowerCase();
> {code}
> causes
> {code}
> java.lang.StringIndexOutOfBoundsException: String index out of range: -2
>     at java.lang.String.substring(String.java:1875)
>     at org.apache.hadoop.hive.ql.udf.generic.GenericUDF.getFuncName(GenericUDF.java:258)
> {code}
> if the Classname of my UDF is less than 10 characters.
> this was probably to remove "GenericUDF" from the classname but causes issues if the class doesn't start with it.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)