Skip to content

Commit

Permalink
[FIX](map)fix map nested decimal with element at apache#27030 (apache…
Browse files Browse the repository at this point in the history
  • Loading branch information
amorynan authored and gnehil committed Dec 4, 2023
1 parent 5f6d380 commit 568c2c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2525,7 +2525,7 @@ protected Type[] getActualArgTypes(Type[] originType) {
}

private MapType getActualMapType(MapType originMapType) {
return new MapType(getActualType(originMapType.getKeyType()), getActualType(originMapType.getValueType()));
return new MapType(originMapType.getKeyType(), originMapType.getValueType());
}

private ArrayType getActualArrayType(ArrayType originArrayType) {
Expand Down

0 comments on commit 568c2c1

Please sign in to comment.