zhangy5 opened a new issue #1571: data overflow when insert value URL: https://github.com/apache/incubator-doris/issues/1571 Tinyint type data overflow when insert value  Steps to reproduce the behavior: 1. create table: CREATE TABLE val ( `k1` tinyint NOT NULL COMMENT "", `v1` tinyint SUM NOT NULL COMMENT "" ) ENGINE=OLAP AGGREGATE KEY(`k1`) DISTRIBUTED BY HASH(`k1`) BUCKETS 5 PROPERTIES ( "storage_type" = "COLUMN" ); 2. insert into val(k1, v1) values(200, 10); 3. select * from val;
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
