hendrikmakait commented on issue #9098:
URL: https://github.com/apache/datafusion/issues/9098#issuecomment-2913561629

   FYI, this appears to be fixed:
   
   ```
   > select arrow_typeof(coalesce([1], [2]));
   
+------------------------------------------------------------------------------------------------------------------+
   | arrow_typeof(coalesce(make_array(Int64(1)),make_array(Int64(2))))          
                                      |
   
+------------------------------------------------------------------------------------------------------------------+
   | List(Field { name: "item", data_type: Int64, nullable: true, dict_id: 0, 
dict_is_ordered: false, metadata: {} }) |
   
+------------------------------------------------------------------------------------------------------------------+
   1 row(s) fetched. 
   Elapsed 0.003 seconds.
   
   > select arrow_typeof(coalesce(NULL, [2]));
   
+------------------------------------------------------------------------------------------------------------------+
   | arrow_typeof(coalesce(NULL,make_array(Int64(2))))                          
                                      |
   
+------------------------------------------------------------------------------------------------------------------+
   | List(Field { name: "item", data_type: Int64, nullable: true, dict_id: 0, 
dict_is_ordered: false, metadata: {} }) |
   
+------------------------------------------------------------------------------------------------------------------+
   1 row(s) fetched. 
   Elapsed 0.006 seconds.
   
   > select arrow_typeof(coalesce([1], NULL));
   
+------------------------------------------------------------------------------------------------------------------+
   | arrow_typeof(coalesce(make_array(Int64(1)),NULL))                          
                                      |
   
+------------------------------------------------------------------------------------------------------------------+
   | List(Field { name: "item", data_type: Int64, nullable: true, dict_id: 0, 
dict_is_ordered: false, metadata: {} }) |
   
+------------------------------------------------------------------------------------------------------------------+
   1 row(s) fetched. 
   Elapsed 0.003 seconds.
   ```


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

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