Github user prasanthj commented on a diff in the pull request: https://github.com/apache/orc/pull/60#discussion_r79097833 --- Diff: java/core/src/java/org/apache/orc/impl/WriterImpl.java --- @@ -1901,7 +2014,11 @@ void writeBatch(ColumnVector vector, int offset, HiveDecimal value = vec.vector[0].getHiveDecimal(); indexStatistics.updateDecimal(value); if (createBloomFilter) { - bloomFilter.addString(value.toString()); + String str = value.toString(); + if (bloomFilter != null) { + bloomFilter.addString(str); --- End diff -- Can you plz add a comment here for not using UTF-8 for decimals?
--- 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. ---