From 7b137a1f8a8e2a2ebeee622b5dbd9de20d9f3f6d Mon Sep 17 00:00:00 2001 From: Curt Hagenlocher Date: Mon, 30 Sep 2024 15:36:17 -0700 Subject: [PATCH] Avoid decimal32 and decimal64 in Python interop tests as they're not supported yet. --- csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs b/csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs index 82f8a11ea3f39..0ef8eba26129e 100644 --- a/csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs +++ b/csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs @@ -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 unsupported = new HashSet { ArrowTypeId.ListView, ArrowTypeId.BinaryView, ArrowTypeId.StringView }; + HashSet unsupported = new HashSet { 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();