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