jayzhan211 commented on issue #13568:
URL: https://github.com/apache/datafusion/issues/13568#issuecomment-2503963673

   It seems the issue is fixed somewhere, I couldn't reproduce the error on the 
latest commit
   
   Including your test and this
   
   ```
   statement count 0
   create table t(a varchar, b varchar) as values ('a', 'b'), ('c', 'd');
   
   statement ok
   create table t2 as
   select
       a as c1,
       arrow_cast(b, 'Utf8View') as c2
   from t;
   
   query T
   select coalesce(c2, c1) from t2;
   ----
   b
   d
   ```


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

Reply via email to