You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@doris.apache.org by GitBox <gi...@apache.org> on 2019/08/01 05:31:51 UTC

[GitHub] [incubator-doris] zhangy5 opened a new issue #1571: data overflow when insert value

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
   ![insert_overflow](https://user-images.githubusercontent.com/10826066/62267804-12fde500-b460-11e9-9999-602afda45745.png)
   
   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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@doris.apache.org
For additional commands, e-mail: dev-help@doris.apache.org