249250251252253254255256257
throw new RuntimeException(ex); } } private PigTuple createTuple(Object obj, ResourceSchema schema) { PigTuple tuple = new PigTuple(schema); tuple.setTuple(TupleFactory.getInstance().newTuple(obj)); return tuple; }
200201202203204205206207208