Doris 版本 2.0.10
CREATE TABLE IF NOT EXISTS `test` (
`k0` decimal(38,0) null comment "",
`k1` decimal(38,4) null comment ""
) engine=olap
DISTRIBUTED BY HASH(`k1`) BUCKETS 5 properties("replication_num" = "1");
insert into test values(12,12.345);
select k0 + k1 from test;
预期结果24.345, 最终计算结果24