EmmyMiao87 opened a new issue, #9529: URL: https://github.com/apache/incubator-doris/issues/9529
### 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 Doris 1.0.0 ### What's Wrong? ERROR 1054 (42S22): errCode = 2, detailMessage = Unknown column 'topic_id' in 't' ### What You Expected? Return result ### How to Reproduce? 1. create table dwd_content_create_base with column topic_ids 2. create view ``` CREATE VIEW `tmp_1` AS SELECT `t`.`topic_id` AS `topic_id` FROM (SELECT `topic_ids` AS `topic_ids` FROM `dwd_content_create_base`) t1 lateral view explode_split(`t1`.`topic_ids`, ',') t as topic_id; ``` 3. query ``` select topic_id from tmp_1 ``` ### Anything Else? _No response_ ### 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
