WingsGo opened a new issue #3880: URL: https://github.com/apache/incubator-doris/issues/3880
**Describe the bug** If we create table like follwing ``` CREATE TABLE `test_show_create` ( `date` int(11) NOT NULL, `idhash` bitmap BITMAP_UNION NOT NULL ) ENGINE=OLAP AGGREGATE KEY(`date`) DISTRIBUTED BY HASH(`date`) BUCKETS 64 PROPERTIES ( "replication_num" = "3", "in_memory" = "false", "storage_format" = "DEFAULT" ); ``` and show create table test_show_create; ``` CREATE TABLE `test_show_create` ( `date` int(11) NOT NULL COMMENT "", `idhash` bitmap BITMAP_UNION NOT NULL DEFAULT " " COMMENT "" ) ENGINE=OLAP AGGREGATE KEY(`date`) COMMENT "OLAP" DISTRIBUTED BY HASH(`date`) BUCKETS 64 PROPERTIES ( "replication_num" = "3", "in_memory" = "false", "storage_format" = "DEFAULT" ); ``` ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org