github-actions[bot] commented on code in PR #18694:
URL: https://github.com/apache/doris/pull/18694#discussion_r1167383999


##########
be/src/runtime/runtime_state.h:
##########
@@ -89,7 +89,10 @@ class RuntimeState {
     }
     int query_parallel_instance_num() const { return 
_query_options.parallel_instance; }
     int max_errors() const { return _query_options.max_errors; }
-    int execution_timeout() const { return _query_options.execution_timeout; }
+    int execution_timeout() const {
+        return _query_options.__iset.execution_timeout ? 
_query_options.execution_timeout :

Review Comment:
   warning: no member named '__iset' in 'doris::TQueryOptions'; did you mean 
'__isset'? [clang-diagnostic-error]
   
   ```suggestion
           return _query_options.__isset.execution_timeout ? 
_query_options.execution_timeout :
   ```
   **gensrc/build/gen_cpp/PaloInternalService_types.h:582:** '__isset' declared 
here
   ```cpp
     _TQueryOptions__isset __isset;
                           ^
   ```
   



-- 
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]

Reply via email to