Originated as part of the review for the ARROW-16407PR.
Currently we get a surprising output when parsing of %Y-%m strings such as "2020-01" - see reprex below.
library(arrow, warn.conflicts=FALSE)
call_function(
"strptime",
Array$create("2020-01"),
options=list(
format="%Y-%m",
unit=0L
)
)
#> Array#> <timestamp[s]>#> [#> 2019-12-31 00:00:00#> ]I'm not sure if this would be useful somewhere else, but we could definitely use this to remove some workarounds in the R bindings.
Reporter: Dragoș Moldovan-Grünfeld / @dragosmg
Watchers: Rok Mihevc / @rok
Related issues:
Note: This issue was originally created as ARROW-16627. Please see the migration documentation for further details.
Originated as part of the review for the ARROW-16407PR.
Currently we get a surprising output when parsing of
%Y-%mstrings such as"2020-01"- see reprex below.I'm not sure if this would be useful somewhere else, but we could definitely use this to remove some workarounds in the R bindings.
Reporter: Dragoș Moldovan-Grünfeld / @dragosmg
Watchers: Rok Mihevc / @rok
Related issues:
Note: This issue was originally created as ARROW-16627. Please see the migration documentation for further details.