Github user vvysotskyi commented on a diff in the pull request:
https://github.com/apache/drill/pull/1049#discussion_r158700125
--- Diff: exec/vector/src/main/codegen/templates/FixedValueVectors.java ---
@@ -394,9 +394,11 @@ public void get(int index,
Nullable${minor.class}Holder holder){
final int offsetIndex = index * VALUE_WIDTH;
final int months = data.getInt(offsetIndex);
final int days = data.getInt(offsetIndex + ${minor.daysOffset});
- final int millis = data.getInt(offsetIndex +
${minor.millisecondsOffset});
+ int millis = data.getInt(offsetIndex + 8);
--- End diff --
I think we should revert this change. It is easier to change `daysOffset`
and `millisecondsOffset` values in `ValueVectorTypes.tdd` rather find all
usages if it will be needed.
---