kumarUjjawal commented on code in PR #18979: URL: https://github.com/apache/datafusion/pull/18979#discussion_r2572318773
########## datafusion/sqllogictest/test_files/scalar.slt: ########## @@ -317,6 +317,16 @@ select ceil(100.1234, 1) query error DataFusion error: This feature is not implemented: CEIL with datetime is not supported select ceil(100.1234 to year) +# ceil with decimal argument +query RRRR +select + ceil(arrow_cast(1.23,'Decimal128(10,2)')), Review Comment: Yes, it should raise a compute error. I will handle this case. -- 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]
