alanl1n opened a new issue, #41138:
URL: https://github.com/apache/doris/issues/41138

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Version
   
   2.1.4
   
   ### What's Wrong?
   
   在删除数据的表格时,如果删除decimal字段的值能被10整除,则会报错
   
   `
   create database decimal_test;
   
   use decimal_test;
   
   create table table_column_test
   as 
   select cast(1 as decimal(32,0)) as c_decimal_32,
   cast(1 as decimal(8,0)) as c_decimal_8,
   cast(1 as int) as c_int;
   
   delete from table_column_test
   where 1=1 
   and  c_decimal_8=1000000;
   `
   
   报错内容为
   Execution failed: Error Failed to execute sql: java.sql.SQLException: 
(conn=643) errCode = 2, detailMessage = delete job timeout, timeout(ms):30000, 
msg:unfinished replicas [BackendId=TabletId]: 394258=727450, 394258=727466, 
394258=727454, 394258=727470, 394258=727442
   
   看相应节点的be日志为:
   fail to generate delete condition. res=[E-1900]invalid condition value. 
[value=1E+6]
   
   ### What You Expected?
   
   No response
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


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