lsy3993 opened a new issue, #21853: URL: https://github.com/apache/doris/issues/21853
### 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 Doris version is 2.0-beta. When I use master (2023-07-16), this bug still exists. ### What's Wrong? When I query es catalog, doris will return the following error: 'Unsupported exec type in pipeline: ES_HTTP_SCAN_NODE'. If add ES_HTTP_SCAN_NODE in be/src/pipeline/pipeline_fragment_context.cpp:_build_pipelines, then query es catalog's test1 table, Doris will return the following error: 1. select test7 from test1; -> Expected value of type: DATETIMEV2; but found type: Number; Document slice is : 1659931810000 3. select c_keyword from test1; -> UNAVAILABLE: Network closed for unknown reason. (BE crash) ### What You Expected? return normally ### How to Reproduce? 1. use doris docker command to start es: ``` cd doris/docker/thirdparties; sh run-thirdparties-docker.sh -c es ``` 2. ``` CREATE CATALOG es PROPERTIES ( "type"="es", "hosts"="http://127.0.0.1:29200"); ``` 3. ``` switch es; show tables; select test7 from test1; ``` 4. ``` select test8 from test1; ``` 5. ``` select c_keyword from test1; ``` ### Anything Else? Other relate issue is : #21847 ### 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]
