morningman commented on PR #10533: URL: https://github.com/apache/doris/pull/10533#issuecomment-1172475410
``` CREATE TABLE `ods_logout` ( `day` date NULL, `game` varchar(500) NULL, `plat` varchar(500) NULL, `dt` datetime NULL, `time` bigint(20) NULL, `sid` int(11) NULL, `pid` varchar(500) NULL, `gid` varchar(500) NULL, `account` varchar(500) NULL, `playerid` varchar(500) NULL, `prop` varchar(500) NULL, `p01` varchar(500) NULL, `p02` varchar(500) NULL, `p03` varchar(500) NULL, `p04` varchar(500) NULL, `p05` varchar(500) NULL, `p06` varchar(500) NULL, `p07` varchar(500) NULL, `p08` varchar(500) NULL, `p09` varchar(500) NULL, `p10` varchar(500) NULL, `p11` varchar(500) NULL, `p12` varchar(500) NULL, `p13` varchar(500) NULL, `p14` varchar(500) NULL, `p15` varchar(500) NULL ) ENGINE=OLAP DUPLICATE KEY(`day`, `game`, `plat`) PARTITION BY RANGE(`day`) (PARTITION p201907 VALUES [('2019-04-01'), ('2019-05-01'))) DISTRIBUTED BY HASH(`game`, `plat`) BUCKETS 4 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "in_memory" = "false", "storage_format" = "V2" ); insert into ods_logout(day, game, plat, playerid, dt) values('2019-04-26', 'xx', 'yyy', '1136638398824557', '2019-04-26 00:00:00'); ``` Tha above case may lead to coredump in your branch. I don't know why, could you try it? -- 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. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org