chaoyli opened a new issue #4044: URL: https://github.com/apache/incubator-doris/issues/4044
``` CREATE TABLE aggregate_table_with_null ( k1 date NULL COMMENT "", k2 datetime NULL COMMENT "", k3 char(20) NULL COMMENT "", k4 varchar(20) NULL COMMENT "", k5 boolean NULL COMMENT "", v1 tinyint(4) SUM NULL COMMENT "", v2 smallint(6) SUM NULL COMMENT "", v3 int(11) SUM NULL COMMENT "", v4 bigint(20) MAX NULL COMMENT "", v5 largeint(40) MAX NULL COMMENT "", v6 float MIN NULL COMMENT "", v7 double MIN NULL COMMENT "", v8 decimal(27, 9) SUM NULL COMMENT "", add_key boolean REPLACE NULL COMMENT "" ) ENGINE=OLAP AGGREGATE KEY(k1, k2, k3, k4, k5) COMMENT "OLAP" DISTRIBUTED BY HASH(k1, k2, k3, k4, k5) BUCKETS 3 PROPERTIES ( "replication_num" = "1", "in_memory" = "false", "storage_format" = "V2" ) ``` ---------------------------------------------------------------- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
