Skip to content

Commit 8279904

Browse files
remove "NA" string case for integer64 (#7664)
1 parent e1d34c2 commit 8279904

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

inst/tests/tests.Rraw

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10525,7 +10525,7 @@ if (test_bit64) {
1052510525
"+9223372036854775807", # integer64 max
1052610526
"-9223372036854775806","+9223372036854775806", # 1 below extreme just to check
1052710527
"0","-1","1",
10528-
"NA",NA,
10528+
NA,
1052910529
"-2147483646", # 1 below extreme to check
1053010530
"-2147483647", # smallest integer in R
1053110531
"-2147483648", # NA_INTEGER == INT_MIN but valid integer64
@@ -10536,7 +10536,7 @@ if (test_bit64) {
1053610536
"+2147483649"
1053710537
)))
1053810538
ans = c('"V1"',"-9223372036854775807","9223372036854775807","-9223372036854775806","9223372036854775806",
10539-
"0","-1","1","__NA__","__NA__",
10539+
"0","-1","1","__NA__",
1054010540
"-2147483646","-2147483647","-2147483648","-2147483649",
1054110541
"2147483646","2147483647","2147483648","2147483649")
1054210542
test(1731.1, class(DT[[1L]]), "integer64")

0 commit comments

Comments
 (0)