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

Prasad Chakka updated HIVE-501:
-------------------------------

       Resolution: Fixed
    Fix Version/s: 0.4.0
     Hadoop Flags: [Reviewed]
           Status: Resolved  (was: Patch Available)

Thanks Zheng!

> UDFLower is doing uppercase instead of lowercase
> ------------------------------------------------
>
>                 Key: HIVE-501
>                 URL: https://issues.apache.org/jira/browse/HIVE-501
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Query Processor
>    Affects Versions: 0.4.0
>            Reporter: Zheng Shao
>            Assignee: Zheng Shao
>            Priority: Critical
>             Fix For: 0.4.0
>
>         Attachments: HIVE-501.1.patch
>
>
> The current code is:
> {code}
> public class UDFLower extends UDF {
>   Text t = new Text();
>   public UDFLower() {
>   }
>   public Text evaluate(Text s) {
>     if (s == null) {
>       return null;
>     }
>     t.set(s.toString().toUpperCase());
>     return t;
>   }
> }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to