jackwener commented on issue #8698: URL: https://github.com/apache/incubator-doris/issues/8698#issuecomment-1081484752
Thanks for your feedback! A little hint: we can use ```sql make the sql statement more readable. like this: ```sql create table test_a (a int ) unique key(a) distributed by hash(a) buckets 1; insert into test_a select 1; insert into test_a select null; select * from test_a; select a, count(1) from test_a group by GROUPING sets((a), ()) ``` -- 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-unsubscr...@doris.apache.org 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