dragosmg commented on code in PR #12589:
URL: https://github.com/apache/arrow/pull/12589#discussion_r861844576
##########
r/R/dplyr-funcs-datetime.R:
##########
@@ -539,3 +595,21 @@ binding_as_date_numeric <- function(x, origin =
"1970-01-01") {
x
}
+
+build_formats <- function(orders) {
+ year_chars <- sprintf("%%%s", c("y", "Y"))
+ month_chars <- sprintf("%%%s", c("m", "B", "b"))
+ day_chars <- sprintf("%%%s", "d")
Review Comment:
Sure, there was a reason why I wrote them like that, but I don't remember
it. Done.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]