hi all,
is it possible to concat array-entries of one column row-wise (using java snippet node)?
eg. my column is:
[0,1,2,3,4,5]
[6,7,8]
[9,10,11,12]
and my output column should be:
[0,1,2,3,4,5,6,7,8,9,10,11,12]
[0,1,2,3,4,5,6,7,8,9,10,11,12]
[0,1,2,3,4,5,6,7,8,9,10,11,12]
thank you!