blob: 36290932abfa64827ddf1c856a06d05356af6d5f [file] [log] [blame]
drop dataverse test if exists;
create dataverse test;
use dataverse test;
write output to nc1:"rttest/string_start-with4.adm";
let $c1 := start-with("start","")
let $c2 := start-with("start",null)
let $c3 := start-with(null,null)
let $c4 := start-with("",null)
let $c5 := start-with("","")
let $c6 := start-with(null,"")
return {"f1": $c1, "f2": $c2, "f3": $c3, "f4": $c4, "f5": $c5, "f6": $c6}