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

hello-stephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 255d5cc03de [fix](be) Fix release build warning in column mapper 
(#65143)
255d5cc03de is described below

commit 255d5cc03de12dde785eee3df0d25410ef49cfc6
Author: bobhan1 <[email protected]>
AuthorDate: Thu Jul 2 22:45:59 2026 +0800

    [fix](be) Fix release build warning in column mapper (#65143)
---
 be/src/format_v2/column_mapper.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/format_v2/column_mapper.cpp 
b/be/src/format_v2/column_mapper.cpp
index 4a76b112456..07e0763b801 100644
--- a/be/src/format_v2/column_mapper.cpp
+++ b/be/src/format_v2/column_mapper.cpp
@@ -1819,7 +1819,7 @@ Status TableColumnMapper::localize_filters(const 
std::vector<TableFilter>& table
             Status clone_status;
             try {
                 clone_status = 
clone_table_expr_tree(table_filter.conjunct->root(), &rewrite_root);
-            } catch (const Exception& e) {
+            } catch ([[maybe_unused]] const Exception& e) {
                 // Some table filters contain complex intermediate values, for 
example
                 // `element_at(MAP_VALUES(m)[1], 'age') > 30`. The current 
file-local rewrite only
                 // understands top-level slots and struct-element paths rooted 
at top-level slots;
@@ -1833,7 +1833,7 @@ Status TableColumnMapper::localize_filters(const 
std::vector<TableFilter>& table
 #else
                 continue;
 #endif
-            } catch (const std::exception& e) {
+            } catch ([[maybe_unused]] const std::exception& e) {
 #ifndef NDEBUG
                 return Status::InternalError(
                         "Failed to clone table filter for file-local rewrite: 
{}, expr={}",


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to