Skip to content

Commit

Permalink
Fix JsonFile integration
Browse files Browse the repository at this point in the history
  • Loading branch information
CurtHagenlocher committed Sep 5, 2024
1 parent 7fde736 commit 3c72431
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions csharp/test/Apache.Arrow.IntegrationTest/JsonFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ private static IArrowType ToDecimalArrowType(JsonArrowType type)
128 => new Decimal128Type(type.DecimalPrecision, type.Scale),
64 => new Decimal64Type(type.DecimalPrecision, type.Scale),
32 => new Decimal32Type(type.DecimalPrecision, type.Scale),
0 => new Decimal128Type(type.DecimalPrecision, type.Scale),
_ => throw new NotSupportedException($"Decimal type not supported. BitWidth: {type.BitWidth}"),
};
}
Expand Down

0 comments on commit 3c72431

Please sign in to comment.