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 2022/07/10 03:51:54 UTC

[GitHub] [doris] Lchangliang opened a new issue, #10728: [Bug] select count(*) return 0 use vectorized_engine

Lchangliang opened a new issue, #10728:
URL: https://github.com/apache/doris/issues/10728

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### Version
   
   master
   
   ### What's Wrong?
   
   ```
   CREATE TABLE uniq_keys_test (
                   `user_id` LARGEINT NOT NULL COMMENT "用户id",
                   `date` DATE NOT NULL COMMENT "数据灌入日期时间",
                   `city` VARCHAR(20) COMMENT "用户所在城市",
                   `age` SMALLINT COMMENT "用户年龄",
                   `sex` TINYINT COMMENT "用户性别",
                   `last_visit_date` DATETIME DEFAULT "1970-01-01 00:00:00" COMMENT "用户最后一次访问时间",
                   `last_update_date` DATETIME DEFAULT "1970-01-01 00:00:00" COMMENT "用户最后一次更新时间",
                   `last_visit_date_not_null` DATETIME NOT NULL DEFAULT "1970-01-01 00:00:00" COMMENT "用户最后一次访问时间",
                   `cost` BIGINT DEFAULT "0" COMMENT "用户总消费",
                   `max_dwell_time` INT DEFAULT "0" COMMENT "用户最大停留时间",
                   `min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
               UNIQUE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
               PROPERTIES ( "replication_num" = "1" );
   INSERT INTO uniq_keys_test VALUES
                (1, '2017-10-01', 'Beijing', 10, 1, '2020-01-01', '2020-01-01', '2020-01-01', 1, 30, 20);
   select count(*) from uniq_keys_test;
   ```
   the result is zero.
   
   ### What You Expected?
   
   the result is one.
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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-unsubscribe@doris.apache.org.apache.org

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] [doris] Lchangliang closed issue #10728: [Bug] select count(*) return 0 use vectorized_engine

Posted by GitBox <gi...@apache.org>.
Lchangliang closed issue #10728: [Bug] select count(*) return 0 use vectorized_engine
URL: https://github.com/apache/doris/issues/10728


-- 
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-unsubscribe@doris.apache.org

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] [doris] platoneko commented on issue #10728: [Bug] select count(*) return 0 use vectorized_engine

Posted by GitBox <gi...@apache.org>.
platoneko commented on issue #10728:
URL: https://github.com/apache/doris/issues/10728#issuecomment-1179651264

   assign me


-- 
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-unsubscribe@doris.apache.org

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