Package org.teiid.common.buffer.TestTupleBuffer

Examples of org.teiid.common.buffer.TestTupleBuffer.FakeBatchManager


    FakeBufferService fbs = new FakeBufferService();
   
    ElementSymbol x = new ElementSymbol("x"); //$NON-NLS-1$
    x.setType(DataTypeManager.DefaultDataClasses.INTEGER);
    List<ElementSymbol> schema = Arrays.asList(x);
    TupleBuffer tb = new TupleBuffer(new FakeBatchManager(), "x", schema, null, 4); //$NON-NLS-1$
    tb.setForwardOnly(false);
   
    tb.addTuple(Arrays.asList(1))
    tb.addTuple(Arrays.asList(2));
    tb.addTuple(Arrays.asList(3));
View Full Code Here

TOP

Related Classes of org.teiid.common.buffer.TestTupleBuffer.FakeBatchManager

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.