yukkit opened a new issue, #5861: URL: https://github.com/apache/arrow-datafusion/issues/5861
### Is your feature request related to a problem or challenge? I want to construct struct from literal or expression by using sql or rust interface. like: - https://docs.databricks.com/sql/language-manual/functions/named_struct.html - https://duckdb.org/docs/sql/data_types/struct.html - https://www.postgresql.org/docs/current/sql-expressions.html#SQL-SYNTAX-ROW-CONSTRUCTORS ### Describe the solution you'd like Add a NamedStruct expression similar to what spark does sql usage: ```sql SELECT named_struct('a', 1, 'b', 2, 'c', 3); ``` ### Describe alternatives you've considered _No response_ ### Additional context If this issue is useful, I will implement it -- 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]
