blob: 829a082b62b380f0d1578b0c602a1dc44e542dd8 [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_codepoint-to-string2.adm";
6
7let $x1 := []
8let $c1 := codepoint-to-string($x1)
9
10let $x2 := [97,98,99]
11let $c2 := codepoint-to-string($x2)
12return {"f1": $c1, "f2" : $c2}