ilovesoup | c9fef1d | 2012-07-08 19:30:42 +0000 | [diff] [blame^] | 1 | drop dataverse test if exists; |
2 | create dataverse test; | ||||
3 | use dataverse test; | ||||
4 | |||||
5 | write output to nc1:"rttest/string_start-with4.adm"; | ||||
6 | |||||
7 | let $c1 := start-with("start","") | ||||
8 | let $c2 := start-with("start",null) | ||||
9 | let $c3 := start-with(null,null) | ||||
10 | let $c4 := start-with("",null) | ||||
11 | let $c5 := start-with("","") | ||||
12 | let $c6 := start-with(null,"") | ||||
13 | |||||
14 | return {"f1": $c1, "f2": $c2, "f3": $c3, "f4": $c4, "f5": $c5, "f6": $c6} |