expand unroll copies the whole array that should be unrolled, instead of
just one element per result.
To reproduce: run the following statement in the jaql shell:
[ [1, [9,8,7] ] ]-> expand unroll $[1];
Expected result:
[ [1, 9], [1, 8], [1, 7] ]
Actual result:
[ [1, [9, 8, 7]], [1, [9, 8, 7]], [1, [9, 8, 7]] ]
Original issue reported on code.google.com by jasper.o...@de.ibm.com on 31 Jul 2009 at 10:44
Original issue reported on code.google.com by
jasper.o...@de.ibm.com
on 31 Jul 2009 at 10:44