Examples of ReallyBigRow


Examples of com.facebook.hive.orc.OrcTestUtils.ReallyBigRow

    Short shortWithUniques = i % 10 == 0 ? (short) i :  (short) (intValues[i] % 10);
    Integer intWithUniques = i % 10 == 0 ? (int) (Short.MAX_VALUE + i) :
      (int) (Short.MAX_VALUE + (intValues[i] % 10));
    Long longWithUniques = i % 10 == 0 ? (long) (Integer.MAX_VALUE + i) :
      (long) (Integer.MAX_VALUE + (intValues[i] % 10));
    return new ReallyBigRow((intValues[i] & 1) == 0, (byte) intValues[i],
        (short) intValues[i], (int) (Short.MAX_VALUE + intValues[i]),
        (long) (Integer.MAX_VALUE + intValues[i]), (short) (intValues[i] % 10),
        (int) (Short.MAX_VALUE + (intValues[i] % 10)),
        (long) (Integer.MAX_VALUE + (intValues[i] % 10)),
        shortWithUniques, intWithUniques, longWithUniques, (float) doubleValues[i],
View Full Code Here

Examples of com.facebook.hive.orc.OrcTestUtils.ReallyBigRow

      (intValues[i] % 10 == 0 ? (int) (Short.MAX_VALUE + i) :
        (int) (Short.MAX_VALUE + (intValues[i] % 10)));
    Long longVal3 = intValues[i] % 15 == 0 ^ lotsOfNulls  ? null :
      (intValues[i] % 10 == 0 ? (long) (Integer.MAX_VALUE + i) :
        (long) (Integer.MAX_VALUE + (intValues[i] % 10)));
    return new ReallyBigRow(booleanVal, byteVal, shortVal, intVal, longVal, shortVal2, intVal2,
        longVal2, shortVal3, intVal3, longVal3, floatVal, doubleVal, bytesVal, strVal, strVal2,
        strVal3, middle, list, map);
  }
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.