HappenLee opened a new pull request, #35152: URL: https://github.com/apache/doris/pull/35152
## Proposed changes beforeļ¼ ``` mysql [test_query_db]>set parallel_pipeline_task_num = 1; Query OK, 0 rows affected (0.00 sec) mysql [test_query_db]>select count(), cast(k12 as int) as t from baseall group by t limit 1; +----------+------+ | count(*) | t | +----------+------+ | 16 | NULL | +----------+------+ 1 row in set (0.01 sec) mysql [test_query_db]>set parallel_pipeline_task_num = 2; Query OK, 0 rows affected (0.01 sec) mysql [test_query_db]>select count(), cast(k12 as int) as t from baseall group by t limit 1; +----------+------+ | count(*) | t | +----------+------+ | 7 | NULL | +----------+------+ 1 row in set (0.01 sec) ``` after: ``` mysql [test_query_db]>set parallel_pipeline_task_num = 2; Query OK, 0 rows affected (0.01 sec) mysql [test_query_db]>select count(), cast(k12 as int) as t from baseall group by t limit 1; +----------+------+ | count(*) | t | +----------+------+ | 16 | NULL | +----------+------+ 1 row in set (0.01 sec) ``` <!--Describe your changes.--> ## Further comments If this is a relatively large or complex change, kick off the discussion at [d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you chose the solution you did and what alternatives you considered, etc... -- 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