Package org.apache.drill.exec.memory

Examples of org.apache.drill.exec.memory.DirectBufferAllocator.buffer()


public class TestEndianess {
 
  @Test
  public void testLittleEndian(){
    DirectBufferAllocator a = new DirectBufferAllocator();
    ByteBuf b = a.buffer(4);
    b.setInt(0, 35);
    assertEquals((int) b.getByte(0), 35);
    assertEquals((int) b.getByte(1), 0);
    assertEquals((int) b.getByte(2), 0);
    assertEquals((int) b.getByte(3), 0);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.