Skip to content

Commit

Permalink
Avoid decimal32 and decimal64 in Python interop tests as they're not …
Browse files Browse the repository at this point in the history
…supported yet.
  • Loading branch information
CurtHagenlocher committed Sep 30, 2024
1 parent d9c8331 commit 7b137a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ public unsafe void RoundTripTestBatch()
public unsafe void RoundTripTestSlicedBatch()
{
// TODO: Enable these once this the version of pyarrow referenced during testing supports them
HashSet<ArrowTypeId> unsupported = new HashSet<ArrowTypeId> { ArrowTypeId.ListView, ArrowTypeId.BinaryView, ArrowTypeId.StringView };
HashSet<ArrowTypeId> unsupported = new HashSet<ArrowTypeId> { ArrowTypeId.ListView, ArrowTypeId.BinaryView, ArrowTypeId.StringView, ArrowTypeId.Decimal32, ArrowTypeId.Decimal64 };
RecordBatch batch1 = TestData.CreateSampleRecordBatch(4, excludedTypes: unsupported);
RecordBatch batch1slice = batch1.Slice(1, 2);
RecordBatch batch2 = batch1slice.Clone();
Expand Down

0 comments on commit 7b137a1

Please sign in to comment.