gavinchou commented on code in PR #30536: URL: https://github.com/apache/doris/pull/30536#discussion_r1471552188
########## fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java: ########## @@ -2869,6 +2877,24 @@ public String getOriginStmtInString() { } return ""; } + + public List<ByteBuffer> getQueryResultBufList() { + return ((ProxyMysqlChannel) context.getMysqlChannel()).getProxyResultBufferList(); + } + + public boolean sendProxyQueryResult() throws IOException { + if (masterOpExecutor == null) { + return false; + } + List<ByteBuffer> queryResultBufList = masterOpExecutor.getQueryResultBufList(); + if (queryResultBufList.isEmpty()) { + return false; + } + for (ByteBuffer byteBuffer : queryResultBufList) { + context.getMysqlChannel().sendOnePacket(byteBuffer); + } + return true; Review Comment: ```suggestion for (ByteBuffer byteBuffer : queryResultBufList) { context.getMysqlChannel().sendOnePacket(byteBuffer); } return !queryResultBufList.isEmpty()); ``` -- 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 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