You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Zixi Wang (Jira)" <ji...@apache.org> on 2021/12/11 07:18:00 UTC

[jira] [Created] (ARROW-15071) [C#] Fixed a bug in Column.cs ValidateArrayDataTypes method

Zixi Wang created ARROW-15071:
---------------------------------

             Summary: [C#] Fixed a bug in Column.cs ValidateArrayDataTypes method
                 Key: ARROW-15071
                 URL: https://issues.apache.org/jira/browse/ARROW-15071
             Project: Apache Arrow
          Issue Type: Bug
          Components: C#
    Affects Versions: 6.0.1
            Reporter: Zixi Wang
            Assignee: Zixi Wang
             Fix For: 6.0.1


Fixed a bug in Column.cs ValidateArrayDataTypes method:

From: if (Data.Array(i).Data.DataType != Field.DataType)

To: if (Data.Array(i).Data.DataType.TypeId != Field.DataType.TypeId)

Added unit test in TestTableBasics and others.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)