siu91 opened a new issue #8466: URL: https://github.com/apache/incubator-doris/issues/8466
### 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 branch master use office docker image compile latest commit f4663ad2eb3fc8ce929304ccdea09d87bb86ec8a ### What's Wrong? when set enable_vectorized_engine=true,Remote UDF call rpc server with “function name” instead of “PROPERTIES.symbol” ### What You Expected? Be consistent, use either “function name” or “PROPERTIES.symbol” ### How to Reproduce? just set enable_vectorized_engine=true, and call function. ```sql CREATE FUNCTION rpc_add(INT, INT) RETURNS INT PROPERTIES ( "SYMBOL"="add_int", "OBJECT_FILE"="127.0.0.1:9000", "TYPE"="RPC" ); ``` ```sql set enable_vectorized_engine=false; select rpc_add(1,1); ``` ```sql set enable_vectorized_engine=true; select rpc_add(1,1); ``` ### Anything Else? Tell me which module the code is in and I might be able to submit some PRs. ### 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]
