Your-neighbor opened a new issue, #12634: URL: https://github.com/apache/doris/issues/12634
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Version 1.1.2 ### What's Wrong? 在使用炸裂函数的时候,其他列数据不能正常显示 比如执行语句 WITH example1 AS ( select 'china' AS k1 ,1949 as k2 ,'湖南,广东,上海' AS k3) select k1,k2, e1 from example1 lateral view explode_split(k3, ',') tmp as e1 ; 期望得到结果应该是: china 1949 湖南 china 1949 广东 china 1949 上海 实际结果 0 湖南 0 广东 0 上海 设置参数 set enable_vectorized_engine =false; 后结果 1949 湖南 1949 广东 1949 上海 ### What You Expected? 期待修复这个bug ### How to Reproduce? _No response_ ### Anything Else? 没了 ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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.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