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

csringhofer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a286ccd5 IMPALA-13657: (Addendum) Add missing break in 
query-options.cc
4a286ccd5 is described below

commit 4a286ccd53f1e75f2941a0362af5530e8fc7b6e6
Author: Eyizoha <[email protected]>
AuthorDate: Sun Apr 27 17:42:22 2025 +0800

    IMPALA-13657: (Addendum) Add missing break in query-options.cc
    
    Change-Id: I1457334417542cb0ec2fbc686c8eabb2acf9ffa8
    Reviewed-on: http://gerrit.cloudera.org:8080/22823
    Reviewed-by: Csaba Ringhofer <[email protected]>
    Tested-by: Csaba Ringhofer <[email protected]>
---
 be/src/service/query-options.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/be/src/service/query-options.cc b/be/src/service/query-options.cc
index 72a00b994..d71dbc6b9 100644
--- a/be/src/service/query-options.cc
+++ b/be/src/service/query-options.cc
@@ -1363,6 +1363,7 @@ Status impala::SetQueryOption(TImpalaQueryOptions::type 
option, const string& va
       }
       case TImpalaQueryOptions::SYNC_HMS_EVENTS_STRICT_MODE: {
         query_options->__set_sync_hms_events_strict_mode(IsTrue(value));
+        break;
       }
       case TImpalaQueryOptions::USE_CALCITE_PLANNER : {
         query_options->__set_use_calcite_planner(IsTrue(value));

Reply via email to