You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Jacques Nadeau (JIRA)" <ji...@apache.org> on 2014/06/09 07:35:15 UTC

[jira] [Updated] (DRILL-345) Addition of a genericUDF/reflectUDF

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

Jacques Nadeau updated DRILL-345:
---------------------------------

    Fix Version/s: Future

> Addition of a genericUDF/reflectUDF
> -----------------------------------
>
>                 Key: DRILL-345
>                 URL: https://issues.apache.org/jira/browse/DRILL-345
>             Project: Apache Drill
>          Issue Type: Improvement
>    Affects Versions: 1.0.0-rc2
>            Reporter: Yash Sharma
>             Fix For: Future
>
>
> Add genericUDF/reflectUDF that will allow users to use methods from Java directly, instead having to write a UDF wrapper on top of existing Java method.
> *Usage:*
> {code:sql}
> SELECT reflect("java.lang.String", "valueOf", 1),
>        reflect("java.lang.String", "isEmpty"),
>        reflect("java.lang.Math", "max", 2, 3),
>        reflect("java.lang.Math", "min", 2, 3),
>        reflect("java.lang.Math", "round", 2.5),
>        reflect("java.lang.Math", "exp", 1.0),
>        reflect("java.lang.Math", "floor", 1.9)
> FROM src LIMIT 1;
> 1   true    3   2   3   2.7182818284590455  1.0
> {code}



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