blob: 3301d5c0d5fc04e03ddc168664fc4afbb8e59324 [file] [log] [blame]
jarodwencbbab142013-02-01 07:56:46 +00001/*
2 * Description : Pass input of type double to UDF
3 * Expected Res : Success
4 * Date : 4th September 2012
5 */
6
7drop dataverse test if exists;
8create dataverse test;
9
10write output to nc1:"rttest/user-defined-functions_udf06.adm";
11
12create function test.echo($a){
13$a
14}
15
16let $b:=1234.1
17return test.echo($b)