예제 #1
0
 public static int computeNullBitmapSize(ARecordType rt) {
   return NonTaggedFormatUtil.hasNullableField(rt)
       ? (int) Math.ceil(rt.getFieldNames().length / 8.0)
       : 0;
 }