djnavarro commented on code in PR #12154: URL: https://github.com/apache/arrow/pull/12154#discussion_r926142528
########## r/R/dplyr-funcs-datetime.R: ########## @@ -615,4 +618,44 @@ register_bindings_datetime_parsers <- function() { build_expr("assume_timezone", coalesce_output, options = list(timezone = tz)) }) + +} + + +register_bindings_datetime_rounding <- function() { + + register_binding("round_date", function(x, unit = "second", + week_start = getOption("lubridate.week.start", 7)) { + opts <- parse_period_unit(unit) + if (opts$unit == 7L) { # weeks (unit = 7L) are special + return(shift_temporal_to_week("round_temporal", x, week_start, options = opts)) + } + Expression$create("round_temporal", x, options = opts) + }) + + register_binding("floor_date", function(x, unit = "second", Review Comment: Huh, that's bizarre. I never noticed that inconsistency within lubridate before! Yeah, I'm tempted to leave the arrow version as is, but it's good that we have it noted here if somehow this becomes relevant? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org