RamanGrover29@gmail.com | 58cf330 | 2012-11-09 00:27:45 +0000 | [diff] [blame^] | 1 | /* |
2 | * Description : Pass input of type double to UDF | ||||
3 | * Expected Res : Success | ||||
4 | * Date : 4th September 2012 | ||||
5 | */ | ||||
6 | |||||
7 | drop dataverse test if exists; | ||||
8 | create dataverse test; | ||||
9 | |||||
10 | write output to nc1:"rttest/cross-dataverse_udf06.adm"; | ||||
11 | |||||
12 | create function test.echo($a){ | ||||
13 | $a | ||||
14 | } | ||||
15 | |||||
16 | let $b:=1234.1 | ||||
17 | return test.echo($b) |