Unexpected exception: Index 0 out of bounds for length 0
CREATE TABLE `decimal_tb` (
`k1` decimal(1, 0) NULL COMMENT "",
`v1` decimal(1, 0) SUM NULL COMMENT "",
`v2` decimal(1, 0) MAX NULL COMMENT "",
`v3` decimal(1, 0) MIN NULL COMMENT "",
`v4` decimal(1, 0) REPLACE NULL COMMENT ""
) ENGINE=OLAP
AGGREGATE KEY(`k1`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`k1`) BUCKETS 15
PROPERTIES (
"replication_allocation" = "tag.location.default: 1",
"in_memory" = "false",
"storage_format" = "V2"
);
insert into decimal_tb select 1, 10, 1, 1, 1;
Search before asking
Version
trunk
What's Wrong?
What You Expected?
Works well
How to Reproduce?
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct