alamb opened a new issue, #8380: URL: https://github.com/apache/arrow-datafusion/issues/8380
### Is your feature request related to a problem or challenge? Someone reported on Discord: https://discord.com/channels/885562378132000778/1166447479609376850/1179899297483980941 > currently when I'm trying to pass a String into ScalarValue::from(), the compiler is telling me that the trait bound ScalarValue: From<std::string::String> is not satisfied Let's make it easier for people to get started with DataFusioN! ### Describe the solution you'd like Make it so the following code works ```rust let scalar = ScalarValue::from("foo"); let scalar = ScalarValue::from("foo".to_string()); ``` ### Describe alternatives you've considered _No response_ ### Additional context I think this is a good first issue as it is well specified and would be a nice usability improvement Related: -- 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]
