Skip to content

Commit

Permalink
apacheGH-35733: [Java] Fix minor type in IntervalMonthDayNanoVector ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
wgtmac committed May 24, 2023
1 parent 6d3d2fc commit b3c357c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public final class IntervalMonthDayNanoVector extends BaseFixedWidthVector {
* @param allocator allocator for memory management.
*/
public IntervalMonthDayNanoVector(String name, BufferAllocator allocator) {
this(name, FieldType.nullable(MinorType.INTERVALDAY.getType()), allocator);
this(name, FieldType.nullable(MinorType.INTERVALMONTHDAYNANO.getType()), allocator);
}

/**
Expand Down

0 comments on commit b3c357c

Please sign in to comment.