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: github-unsubscr...@datafusion.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to