Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling shift on a nanotime does not identify the nanotime as inheriting from bit64::integer64, and thus fills the numeric NA instead of the integer64:
shift
nanotime
bit64::integer64
NA
integer64
data.table::shift(nanotime::nanotime(1:4))
[1] "2262-02-18T20:47:17.227407266+00:00" "1970-01-01T00:00:00.000000001+00:00" [3] "1970-01-01T00:00:00.000000002+00:00" "1970-01-01T00:00:00.000000003+00:00"
Fixed by #3942:
[1] NA "1970-01-01T00:00:00.000000001+00:00" [3] "1970-01-01T00:00:00.000000002+00:00" "1970-01-01T00:00:00.000000003+00:00"
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Calling
shift
on ananotime
does not identify thenanotime
as inheriting frombit64::integer64
, and thus fills the numericNA
instead of theinteger64
:Fixed by #3942:
The text was updated successfully, but these errors were encountered: