You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2020/07/24 03:20:11 UTC

[GitHub] [incubator-doris] HangyuanLiu opened a new issue #4167: [Bug] LargetIntLiteral is not analyze

HangyuanLiu opened a new issue #4167:
URL: https://github.com/apache/incubator-doris/issues/4167


   _Step1:_
   CREATE TABLE `duplicate_table_with_default` (
       `k1`  date default "1970-01-01",
       `k2`  datetime default "1970-01-01 00:00:00",
       `k3`  char(20) default "",
       `k4`  varchar(20) default "",
       `k5`  boolean,
       `k6`  tinyint default "0",
       `k7`  smallint default "0",
       `k8`  int default "0",
       `k9`  bigint default "0",
       `k10` largeint default "12345678901234567890",
       `k11` float default "-1",
       `k12` double default "0",
       `k13` decimal(27,9) default "0"
   ) ENGINE=OLAP
   DUPLICATE KEY(`k1`, `k2`, `k3`, `k4`, `k5`)
   COMMENT "OLAP"
   DISTRIBUTED BY HASH(`k1`, `k2`, `k3`, `k4`, `k5`) BUCKETS 3
   PROPERTIES (
       "replication_num" = "1",
       "storage_format" = "v2"
   );
   
   _Step2:_
   insert into duplicate_table_with_default values ('2020-06-25', '2020-06-25 00:16:23', 'beijing', 'haidian', 0, 87, -31785, -2147482665, -9223372036854774825, default, 25.2, 2.69, -2.18);
   
   ERROR 1064 (HY000): errCode = 2, detailMessage = Unexpected exception: null


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



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


[GitHub] [incubator-doris] HangyuanLiu closed issue #4167: [Bug] LargeIntLiteral is not analyze

Posted by GitBox <gi...@apache.org>.
HangyuanLiu closed issue #4167:
URL: https://github.com/apache/incubator-doris/issues/4167


   


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



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