Github user omalley commented on a diff in the pull request: https://github.com/apache/orc/pull/60#discussion_r79100160 --- Diff: java/core/src/java/org/apache/orc/util/BloomFilter.java --- @@ -130,7 +125,7 @@ public void addString(String val) { if (val == null) { add(null); } else { - add(val.getBytes()); + add(val.getBytes(Charset.defaultCharset())); --- End diff -- No, this one is explicitly the default charset to be compatible. BloomFilterUtf8 is the fixed one.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---