コード例 #1
0
ファイル: BaseCharUtils.java プロジェクト: Leolh/hive
 public static boolean doesPrimitiveMatchTypeParams(
     HiveBaseChar value, BaseCharTypeInfo typeInfo) {
   return typeInfo.getLength() == value.getCharacterLength();
 }
コード例 #2
0
ファイル: BaseCharUtils.java プロジェクト: Leolh/hive
 public static boolean doesWritableMatchTypeParams(
     HiveBaseCharWritable writable, BaseCharTypeInfo typeInfo) {
   return typeInfo.getLength() >= writable.getCharacterLength();
 }