Github user jiang-wu commented on a diff in the pull request: https://github.com/apache/drill/pull/1184#discussion_r181256294 --- Diff: exec/vector/src/main/codegen/templates/FixedValueVectors.java --- @@ -509,15 +509,15 @@ public long getTwoAsLong(int index) { public ${friendlyType} getObject(int index) { org.joda.time.DateTime date = new org.joda.time.DateTime(get(index), org.joda.time.DateTimeZone.UTC); date = date.withZoneRetainFields(org.joda.time.DateTimeZone.getDefault()); - return date; + return new java.sql.Date(date.getMillis()); --- End diff -- sure, I can update to the joda version or the java.time version. Which one is preferred? java.time.* is available in java 1.8+
---