(Tuple t, int[] input)
| 146 | } |
| 147 | |
| 148 | static public Tuple loadNestTuple(Tuple t, int[] input) throws ExecException { |
| 149 | DataBag bag = BagFactory.getInstance().newDefaultBag(); |
| 150 | for(int i = 0; i < input.length; i++) { |
| 151 | Tuple f = TupleFactory.getInstance().newTuple(1); |
| 152 | f.set(0, input[i]); |
| 153 | bag.add(f); |
| 154 | } |
| 155 | t.set(0, bag); |
| 156 | return t; |
| 157 | } |
| 158 | |
| 159 | static public Tuple loadNestTuple(Tuple t, long[] input) throws ExecException { |
| 160 | DataBag bag = BagFactory.getInstance().newDefaultBag(); |
no test coverage detected