Skip to content

Commit

Permalink
Derp
Browse files Browse the repository at this point in the history
  • Loading branch information
CurtHagenlocher committed Oct 1, 2024
1 parent 7b137a1 commit bcf27d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csharp/src/Apache.Arrow/Ipc/MessageSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private static Types.IArrowType GetFieldArrowType(Flatbuf.Field field, Field[] c
case 32:
return new Types.Decimal32Type(decMeta.Precision, decMeta.Scale);
case 64:
return new Types.Decimal64Type(decMeta.Precision, decMeta.Precision);
return new Types.Decimal64Type(decMeta.Precision, decMeta.Scale);
case 128:
return new Types.Decimal128Type(decMeta.Precision, decMeta.Scale);
case 256:
Expand Down

0 comments on commit bcf27d8

Please sign in to comment.