codephage2020 opened a new issue, #9490:
URL: https://github.com/apache/arrow-rs/issues/9490

   **Is your feature request related to a problem or challenge? Please describe 
what you are trying to do.**
   <!--
   A clear and concise description of what the problem is. Ex. I'm always 
frustrated when [...] 
   (This section helps Arrow developers understand the context and *why* for 
this feature, in addition to  the *what*)
   -->
   
   Background: In PR #9345 , we added from_datetime and from_naive_datetime 
methods to the ArrowTimestampType trait. The from_naive_datetime(naive, None) 
call is now functionally equivalent to make_value(naive).
   
   **Describe the solution you'd like**
   <!--
   A clear and concise description of what you want to happen.
   -->
   Deprecate the make_value method on ArrowTimestampType trait 
   
   Migration Path: Users should replace:
   
   ```rust
   // Old
   TimestampSecondType::make_value(naive)
   ```
   With:
   
   ```rust
   // New
   TimestampSecondType::from_naive_datetime(naive, None)
   ```
   


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