Skip to content

Commit

Permalink
Update HugeInt tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Giorgi committed Apr 15, 2024
1 parent 49724d3 commit 06ea35d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions DuckDB.NET.Test/Parameters/HugeIntParameterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ public void SimpleTest()
reader.GetFieldValue<short>(0).Should().Be(125);
reader.GetFieldValue<int>(0).Should().Be(125);
reader.GetFieldValue<long>(0).Should().Be(125);
reader.GetFieldValue<uint>(0).Should().Be(125);
reader.GetFieldValue<ulong>(0).Should().Be(125);

reader.GetFieldType(0).Should().Be(typeof(BigInteger));
}
Expand Down

0 comments on commit 06ea35d

Please sign in to comment.