Package org.apache.pig.piggybank.evaluation.util

Examples of org.apache.pig.piggybank.evaluation.util.ToBag


import org.junit.Test;

public class TestToBagToTuple {
    @Test
    public void toBag() throws Exception{
        ToBag tb = new ToBag();

        Tuple input = TupleFactory.getInstance().newTuple();
        for (int i = 0; i < 100; ++i) {
            input.append(i);
        }

        Set<Integer> s = new HashSet<Integer>();
        DataBag db = tb.exec(input);
        for (Tuple t : db) {
            s.add((Integer) t.get(0));
        }

        // finally check the bag had everything we put in the tuple.
View Full Code Here

TOP

Related Classes of org.apache.pig.piggybank.evaluation.util.ToBag

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.