This is an automated email from the ASF dual-hosted git repository.
westonpace pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
from be2014a9eb GH-36767: [C++][CI] Fix test failure on i386 (#36769)
add bebd2bf693 GH-34620: [C#] Support DateOnly and TimeOnly on .NET 6.0+
(#36125)
No new revisions were added by this update.
Summary of changes:
csharp/src/Apache.Arrow/Arrays/Date32Array.cs | 26 ++++
csharp/src/Apache.Arrow/Arrays/Date64Array.cs | 23 ++++
csharp/src/Apache.Arrow/Arrays/DateArrayBuilder.cs | 70 ++++++++++
csharp/src/Apache.Arrow/Arrays/Time32Array.cs | 61 +++++++--
csharp/src/Apache.Arrow/Arrays/Time64Array.cs | 65 +++++++--
csharp/src/Apache.Arrow/Arrays/TimeArrayBuilder.cs | 152 +++++++++++++++++++++
.../Apache.Arrow.Tests/Apache.Arrow.Tests.csproj | 6 +-
.../test/Apache.Arrow.Tests/ArrayBuilderTests.cs | 8 +-
csharp/test/Apache.Arrow.Tests/ArrowArrayTests.cs | 8 +-
csharp/test/Apache.Arrow.Tests/Date32ArrayTests.cs | 32 +++++
csharp/test/Apache.Arrow.Tests/Date64ArrayTests.cs | 33 +++++
.../test/Apache.Arrow.Tests/TestDateAndTimeData.cs | 5 +
csharp/test/Apache.Arrow.Tests/TimeOnlyTests.cs | 111 +++++++++++++++
13 files changed, 574 insertions(+), 26 deletions(-)
create mode 100644 csharp/src/Apache.Arrow/Arrays/TimeArrayBuilder.cs
create mode 100644 csharp/test/Apache.Arrow.Tests/TimeOnlyTests.cs