Commits


Gang Wu authored and GitHub committed 5582605caa6
GH-35733: [Java] Fix minor type in IntervalMonthDayNanoVector ctor (#35734) ### Rationale for this change The constructor of IntervalMonthDayNanoVector does not set minor type correctly. ```java public IntervalMonthDayNanoVector(String name, BufferAllocator allocator) { this(name, FieldType.nullable(MinorType.INTERVALDAY.getType()), allocator); } ``` It should be `MinorType.INTERVALMONTHDAYNANO`. ### What changes are included in this PR? Change it to set `MinorType.INTERVALMONTHDAYNANO`. ### Are these changes tested? Added test to verify vector type. ### Are there any user-facing changes? No. * Closes: #35733 Authored-by: Gang Wu <ustcwg@gmail.com> Signed-off-by: David Li <li.davidm96@gmail.com>