MCPcopy Create free account
hub / github.com/apache/pig / createBag

Method createBag

test/org/apache/pig/test/Util.java:238–243  ·  view source on GitHub ↗
(Tuple[] t)

Source from the content-addressed store, hash-verified

236 }
237
238 static public DataBag createBag(Tuple[] t)
239 {
240 DataBag b = mBagFactory.newDefaultBag();
241 for(int i = 0; i < t.length; i++)b.add(t[i]);
242 return b;
243 }
244
245 static public<T> DataBag createBagOfOneColumn(T[] input) throws ExecException {
246 DataBag result = mBagFactory.newDefaultBag();

Callers 6

testGetNextNullInputMethod · 0.95
testAVGFinalMethod · 0.95
testStringFuncsMethod · 0.95
testSIZEMethod · 0.95
testStringUDFsMethod · 0.95

Calls 2

addMethod · 0.95
newDefaultBagMethod · 0.45

Tested by

no test coverage detected