Index: ql/src/test/org/apache/hadoop/hive/ql/stats/KeyVerifyingStatsAggregator.java =================================================================== --- ql/src/test/org/apache/hadoop/hive/ql/stats/KeyVerifyingStatsAggregator.java (revision 1419933) +++ ql/src/test/org/apache/hadoop/hive/ql/stats/KeyVerifyingStatsAggregator.java (working copy) @@ -37,7 +37,8 @@ SessionState ss = SessionState.get(); // Have to use the length instead of the actual prefix because the prefix is location dependent // 17 is 16 (16 byte MD5 hash) + 1 for the path separator - ss.out.println("Stats prefix is hashed: " + new Boolean(keyPrefix.length() == 17)); + // Can be less than 17 due to unicode characters + ss.out.println("Stats prefix is hashed: " + new Boolean(keyPrefix.length() <= 17)); return null; }