Hi,
I have implemented the array navigation functions (value, size) [1]. I
have, also, run some tests which I included in the pull request. I have
the following problems. When I have nested arrays, I cannot navigate
into them. I can only navigate if I have a single array. I think that
the problem is that when I try to parse the nested array the expression
that has it, it sees it as a nested array.
Example: x=[1,[1,2,3]]
x(2)=[[1,2,3]], so if i ask for x(2)(2) it returns indexOutofBounds,
because it sees it as one item.
Everything else runs correctly. Any help would be really appreciated.
[1] https://github.com/apache/vxquery/pull/57
Thank you,
Christina