Skip to content

Commit

Permalink
add write INT128_MIN test
Browse files Browse the repository at this point in the history
  • Loading branch information
belous-dp committed Dec 18, 2024
1 parent ecc77e2 commit 1c1ce1e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/write.jl
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,12 @@ Base.string(x::AF) = string(x.f)
[StructType(Date("2021-12-01"), "string 1", 123.45), StructType(Date("2021-12-02"), "string 2", 456.78)],
(header=["Date Column", "String Column", "Number Column"],),
"Date Column,String Column,Number Column\n2021-12-01,string 1,123.45\n2021-12-02,string 2,456.78\n"
),
# 1151
(
[(a=Int128(-170141183460469231731687303715884105728),)],
NamedTuple(),
"a\n-170141183460469231731687303715884105728\n"
)
]

Expand Down

0 comments on commit 1c1ce1e

Please sign in to comment.