You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by st...@apache.org on 2024/04/26 01:26:43 UTC

(doris) branch master updated: [fix](nereids)prevent null pointer access if translate expression fails (#33990)

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

starocean999 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 0038423c026 [fix](nereids)prevent null pointer access if translate expression fails (#33990)
0038423c026 is described below

commit 0038423c026cbe057237a25d5654fedad5cd3fd3
Author: starocean999 <40...@users.noreply.github.com>
AuthorDate: Fri Apr 26 09:26:36 2024 +0800

    [fix](nereids)prevent null pointer access if translate expression fails (#33990)
---
 .../doris/nereids/rules/expression/rules/FoldConstantRuleOnBE.java   | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rules/FoldConstantRuleOnBE.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rules/FoldConstantRuleOnBE.java
index 3c2f0d546dd..e0e19bd19e2 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rules/FoldConstantRuleOnBE.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rules/FoldConstantRuleOnBE.java
@@ -215,6 +215,11 @@ public class FoldConstantRuleOnBE implements ExpressionPatternRuleFactory {
                 LOG.warn("expression {} translate to legacy expr failed. ", expr, e);
                 return;
             }
+            if (staleExpr == null) {
+                // just return, it's a fail-safe
+                LOG.warn("expression {} translate to legacy expr failed. ", expr);
+                return;
+            }
             tExprMap.put(id, staleExpr.treeToThrift());
         } else {
             for (int i = 0; i < expr.children().size(); i++) {


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