drop dataverse test if exists; | |
create dataverse test; | |
use dataverse test; | |
write output to nc1:"rttest/string_codepoint-to-string2.adm"; | |
let $x1 := [] | |
let $c1 := codepoint-to-string($x1) | |
let $x2 := [97,98,99] | |
let $c2 := codepoint-to-string($x2) | |
return {"f1": $c1, "f2" : $c2} |