Huguowei opened a new issue, #22351: URL: https://github.com/apache/doris/issues/22351
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Version 2.0-beta ### What's Wrong? 1. create example table ```sql create table example1 as select 1 as k1; ```  2. fire explode query ```sql select k1, e1 from example1 lateral view explode_json_array_json('[{"id":1,"name":"John"},{"id":2,"name":"Mary"}]') tmp1 as e1 order by k1, e1; ``` doris will throw an error`ERROR 1105 (HY000): errCode = 2, detailMessage = No matching function with signature: explode_json_array_json(varchar(*))` ### What You Expected?  ### How to Reproduce? Do as I do in "What's Wrong?". ### Anything Else? https://github.com/apache/doris/issues/21422 ### Are you willing to submit PR? - [ ] 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]
