@Test
public void testSFPig() throws Exception {
byte[] buf = new byte[1024];
FakeFSOutputStream os = new FakeFSOutputStream(buf);
StoreFunc sfunc = new PigStorage("\t");
sfunc.bindTo(os);
int[] input = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
Tuple f1 = Util.loadFlatTuple(new Tuple(input.length), input);
sfunc.putNext(f1);