Commits


Zixi authored and Eric Erhardt committed 06b10133e48
ARROW-15071: [C#] Fixed a bug in Column.cs ValidateArrayDataTypes method 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. Closes #11931 from zixi-bwang/CSharpUnitTesting Lead-authored-by: Zixi <zixi.bwang@gmail.com> Co-authored-by: Zixi <89567557+zixi-bwang@users.noreply.github.com> Signed-off-by: Eric Erhardt <eric.erhardt@microsoft.com>