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/01/14 09:56:55 UTC

[GitHub] [incubator-doris] jmk1011 opened a new issue #2760: be exit when select bitmap_count(bitmap_and(column, to_bitmap(NULL)))

jmk1011 opened a new issue #2760: be exit when select bitmap_count(bitmap_and(column, to_bitmap(NULL)))
URL: https://github.com/apache/incubator-doris/issues/2760
 
 
   **Describe the bug**
   be exit when select bitmap_count(bitmap_and(column, to_bitmap(NULL)))
   
   **To Reproduce**
   CREATE TABLE `test_bitmap_tb` (
     `id` int(11) NULL COMMENT "",
     `id1` tinyint(4) NULL COMMENT "",
     `c_float` float SUM NULL COMMENT "",
     `bitmap_set` bitmap BITMAP_UNION NULL COMMENT ""
   ) ENGINE=OLAP
   AGGREGATE KEY(`id`, `id1`)
   COMMENT "OLAP"
   DISTRIBUTED BY HASH(`id`, `id1`) BUCKETS 5
   PROPERTIES (
   "storage_type" = "COLUMN"
   );
   insert into test_bitmap_tb values(1,2,1,to_bitmap(NULL));
   select bitmap_count(bitmap_and(bitmap_set,to_bitmap(NULL))) from test_bitmap_tb;
   
   **Screenshots**
   ![image](https://user-images.githubusercontent.com/18320438/72333386-aff2c880-36f6-11ea-9089-40ee464372e9.png)
   
   **Code Version**
   https://github.com/apache/incubator-doris/commit/a99a49a4444ccd2199356b7c1414adef7f58c32c

----------------------------------------------------------------
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: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org