jonkeane commented on code in PR #12589:
URL: https://github.com/apache/arrow/pull/12589#discussion_r868362546


##########
r/NEWS.md:
##########
@@ -18,10 +18,10 @@
 -->
 # development version
 
-  * `lubridate::parse_date_time()` datetime parser (only for year, month, and 
day components with separators). Not all functionality has been implemented:
-    * the `orders` argument in the Arrow binding works slightly different than 
in `lubridate::parse_date_time()` and closer to `lubridate::parse_date_time2()` 
and `lubridate::fast_strptime()`: `orders` are transformed into `formats` which 
subsequently get applied in turn. There is no `select_formats` parameter and no 
inference takes place. `lubridate::parse_date_time()` usually "trains" formats 
on a subset of the input vector and then applies them according to performance 
on the training set. 
-    * currently only `orders` containing the year, month, and day components 
are supported. In a future release `orders` containing other datetime 
components (such as hours, minutes, seconds, etc) will be supported.
-    * strings with no separators (e.g. 20210917) will likely fail to parse so 
you might want to try using the `strptime()` binding instead.
+  * `lubridate::parse_date_time()` datetime parser:
+    * currently only `orders` containing the year, month, and day components 
are supported. In a future release `orders` containing other datetime 
components (such as hours, minutes, seconds, etc) will be added.
+    * strings with no separators (e.g. `"20210917"`) could be ambiguous and 
are not yet supported.
+    * the `orders` argument in the Arrow binding worksas follows: `orders` are 
transformed into `formats` which subsequently get applied in turn. There is no 
`select_formats` parameter and no inference takes place (like is the case in 
`lubridate::parse_date_time()`).

Review Comment:
   ```suggestion
       * the `orders` argument in the Arrow binding works as follows: `orders` 
are transformed into `formats` which subsequently get applied in turn. There is 
no `select_formats` parameter and no inference takes place (like is the case in 
`lubridate::parse_date_time()`).
   ```



-- 
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]

Reply via email to