alamb commented on issue #14230:
URL: https://github.com/apache/datafusion/issues/14230#issuecomment-2631350057

   BTW I think @Omega359  hit the same issue about automatically coercing from 
`int` to `utf8` when testing 45.0.0: 
https://github.com/apache/datafusion/issues/14008#issuecomment-2629085175
   
   > utf8view, i32 comparison no longer worked
   
   .with_column(
               STRING_FIELD,
               when(col(STRING_FIELD).eq(lit(83)), 
lit(82)).otherwise(col(STRING_FIELD))?,
           )?
   switching to the obvious change below worked
   
   .with_column(
               STRING_FIELD,
               when(col(STRING_FIELD).eq(lit("83")), 
lit("82")).otherwise(col(STRING_FIELD))?,
           )?


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