forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apacheGH-37861: [C#] Fix StringArray.GetString returning null instead…
… of empty (apache#37862) ### Rationale for this change Fixes apache#37861. ### What changes are included in this PR? Add `BinaryArray.GetBytes(int, out bool)` overload that enables `StringArray.GetString` to reliably determine if the value is null or empty without needing an additional call to `IsNull`. ### Are these changes tested? Added a test for `StringArray.GetString` (which didn't appear to have any existing tests). Two of the cases fail without this change. I also updated the tests that call `BinaryArray.GetBytes` to use the new overload instead of a separate call to `IsNull` as extra validation. ### Are there any user-facing changes? New public overload to an existing API. * Closes: apache#37861
- Loading branch information
1 parent
5639302
commit b777872
Showing
4 changed files
with
75 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one or more | ||
// contributor license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright ownership. | ||
// The ASF licenses this file to You under the Apache License, Version 2.0 | ||
// (the "License"); you may not use this file except in compliance with | ||
// the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
using Xunit; | ||
|
||
namespace Apache.Arrow.Tests | ||
{ | ||
public class StringArrayTests | ||
{ | ||
public class GetString | ||
{ | ||
[Theory] | ||
[InlineData(null, null)] | ||
[InlineData(null, "")] | ||
[InlineData(null, "value")] | ||
[InlineData("", null)] | ||
[InlineData("", "")] | ||
[InlineData("", "value")] | ||
[InlineData("value", null)] | ||
[InlineData("value", "")] | ||
[InlineData("value", "value")] | ||
public void ReturnsAppendedValue(string firstValue, string secondValue) | ||
{ | ||
// Arrange | ||
// Create an array with two elements. The second element being null, | ||
// empty, or non-empty may influence the underlying BinaryArray | ||
// storage such that retrieving an empty first element could result | ||
// in an empty span or a 0-length span backed by storage. | ||
var array = new StringArray.Builder() | ||
.Append(firstValue) | ||
.Append(secondValue) | ||
.Build(); | ||
|
||
// Act | ||
var retrievedValue = array.GetString(0); | ||
|
||
// Assert | ||
Assert.Equal(firstValue, retrievedValue); | ||
} | ||
} | ||
} | ||
} |