chaoyli opened a new issue #1290: Rollup data is in chaos with base table URL: https://github.com/apache/incubator-doris/issues/1290 ``` CREATE TABLE IF NOT EXISTS test_db.user_log ( `phone` BIGINT NOT NULL , `dt` BIGINT NOT NULL , `pv` BIGINT , `rule_id` BIGINT , `theme_id` BIGINT, `context_type` VARCHAR(1024) , `phone_city` VARCHAR(1024) , `phone_prov` VARCHAR(1024), `dpi_prov` VARCHAR(1024) , `op` VARCHAR(1024) , `uv_count` BIGINT SUM DEFAULT "1" ) DISTRIBUTED BY HASH(`phone`) BUCKETS 8; alter table user_log add rollup phone_dt(phone,dt,uv_count); select sum(uv_count) from user_log; ```
---------------------------------------------------------------- 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]
