Re: [I] Add a case for reading map_entries in the `read basic complex types` test [datafusion-comet]

2025-06-25 Thread via GitHub


comphead commented on issue #1916:
URL: 
https://github.com/apache/datafusion-comet/issues/1916#issuecomment-3005170665

   `map_entries` is not supported in DataFusion. Filed 
https://github.com/apache/datafusion/issues/16553


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


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



Re: [I] Add a case for reading map_entries in the `read basic complex types` test [datafusion-comet]

2025-06-22 Thread via GitHub


comphead commented on issue #1916:
URL: 
https://github.com/apache/datafusion-comet/issues/1916#issuecomment-2994364892

   I'll take it @parthchandra as already working on other MAP functions


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


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



[I] Add a case for reading map_entries in the `read basic complex types` test [datafusion-comet]

2025-06-19 Thread via GitHub


parthchandra opened a new issue, #1916:
URL: https://github.com/apache/datafusion-comet/issues/1916

   ### Describe the bug
   
   The test has a query -
   ```
sql(
 "select optional_array[0], " +
 "array_of_struct[0].field1, " +
 "array_of_struct[0].optional_nested_array, " +
 "optional_map.key, " +
 "optional_map.value, " +
 "map_keys(complex_map), " +
 "map_values(complex_map) " +
 "from complex_types")
   ```
   which could be 
sql(
 "select optional_array[0], " +
 "array_of_struct[0].field1, " +
 "array_of_struct[0].optional_nested_array, " +
 "optional_map.key, " +
 "optional_map.value, " +
 "map_entries(complex_map), " +
 "map_keys(complex_map), " +
 "map_values(complex_map) " +
 "from complex_types")
   ```
   to ensure map_entries are also read correctly.
   
   ### Steps to reproduce
   
   _No response_
   
   ### Expected behavior
   
   _No response_
   
   ### Additional context
   
   _No response_


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


-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]