zhiqiang-hhhh opened a new pull request, #30234: URL: https://github.com/apache/doris/pull/30234
before ```sql select cast(12 as decimalv2(2,1)) -------------- +---------------------------+ | cast(12 as DECIMAL(2, 1)) | +---------------------------+ | 12.0 | +---------------------------+ 1 row in set (0.04 sec) ``` after ```sql select cast(12 as decimalv2(2,1)) -------------- ERROR 1105 (HY000): errCode = 2, detailMessage = (xx)[CANCELLED][E-124] Arithmetic overflow, convert failed from 120, expected data is [-99, 99] ``` -- 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]
