diff --git a/Snowflake.Data.Tests/UnitTests/ArrowResultChunkTest.cs b/Snowflake.Data.Tests/UnitTests/ArrowResultChunkTest.cs index 80a8890f1..fd70c80c9 100755 --- a/Snowflake.Data.Tests/UnitTests/ArrowResultChunkTest.cs +++ b/Snowflake.Data.Tests/UnitTests/ArrowResultChunkTest.cs @@ -1,4 +1,4 @@ -/* +/* * Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved. */ @@ -151,6 +151,7 @@ public void TestUnusedExtractCellThrowsNotSupportedException() var chunk = new ArrowResultChunk(_recordBatchOne); Assert.Throws(() => chunk.ExtractCell(0)); + Assert.Throws(() => chunk.ExtractCell(0, 0)); } [Test] diff --git a/Snowflake.Data/Core/ArrowResultChunk.cs b/Snowflake.Data/Core/ArrowResultChunk.cs index 4422d1957..901c01692 100755 --- a/Snowflake.Data/Core/ArrowResultChunk.cs +++ b/Snowflake.Data/Core/ArrowResultChunk.cs @@ -138,7 +138,6 @@ public override UTF8Buffer ExtractCell(int rowIndex, int columnIndex) throw new NotSupportedException(); } - [Obsolete("ExtractCell with columnIndex is deprecated", false)] public override UTF8Buffer ExtractCell(int columnIndex) { throw new NotSupportedException();