This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 1d740ff8256 [fix](auditlog) set isQuery to true when query is short 
circuited (#42647) (#43345)
1d740ff8256 is described below

commit 1d740ff8256599b5b6529325e92799f706e0b8d0
Author: lihangyu <15605149...@163.com>
AuthorDate: Sun Nov 10 10:08:56 2024 +0800

    [fix](auditlog) set isQuery to true when query is short circuited (#42647) 
(#43345)
    
    (#42647)
---
 fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java 
b/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java
index 4cab4220eef..831696d9ebb 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java
@@ -1846,10 +1846,12 @@ public class StmtExecutor {
                                 : new ShortCircuitQueryContext(planner, 
(Queriable) parsedStmt);
             coordBase = new PointQueryExecutor(shortCircuitQueryContext,
                         
context.getSessionVariable().getMaxMsgSizeOfResultReceiver());
+            context.getState().setIsQuery(true);
         } else if (queryStmt instanceof SelectStmt && ((SelectStmt) 
parsedStmt).isPointQueryShortCircuit()) {
             // this branch is for legacy planner, to be removed
             coordBase = new PointQueryExec(planner, analyzer,
                     
context.getSessionVariable().getMaxMsgSizeOfResultReceiver());
+            context.getState().setIsQuery(true);
         } else {
             coord = new Coordinator(context, analyzer, planner, 
context.getStatsErrorEstimator());
             profile.addExecutionProfile(coord.getExecutionProfile());


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to