Fixed Issues in Apache Kudu
Review the list of Kudu issues that are resolved in Cloudera Runtime 7.1.4.
- KUDU-3152: KuduPredicate class in Java client does not handle Date columns
- Prior to this fix, if you had a table
with
DATE
column, you could not scan for it using the java client. A check for minimum and maximum boundaries of integer representation ofjava.sql.Date
was added to matchMIN_DATE_VALUE
andMAX_DATE_VALUE
inDateUtil
.