erratic-pattern commented on PR #10221:
URL: https://github.com/apache/datafusion/pull/10221#issuecomment-2076328245

   It looks like the failing test case is no longer throwing an error after I 
added @jayzhan211 's suggestion:
   
   ```
   DataFusion CLI v37.1.0
   > select coalesce(34, arrow_cast(123, 'Dictionary(Int32, Int8)'));
   
+----------------------------------------------------------------------------+
   | coalesce(Int64(34),arrow_cast(Int64(123),Utf8("Dictionary(Int32, Int8)"))) 
|
   
+----------------------------------------------------------------------------+
   | 34                                                                         
|
   
+----------------------------------------------------------------------------+
   1 row(s) fetched.
   Elapsed 0.071 seconds.
   ```
   
    I think it's now complaining that the type is no longer an integer and is 
instead `Dictionary<Int32, Int8>`
   
   ```
   External error: query columns mismatch:
   [SQL] select coalesce(34, arrow_cast(123, 'Dictionary(Int32, Int8)'));
   [Expected] [I]
   [Actual  ] [?]
   at test_files/scalar.slt:1794
   ```


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