This is an automated email from the ASF dual-hosted git repository. morrysnow 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 1bafb26217 [fix](Nereids) throw NPE when call getOutputExprIds in LogicalProperties (#13898) 1bafb26217 is described below commit 1bafb26217d5ed9fb197e09c75ff567d2613a6a5 Author: morrySnow <101034200+morrys...@users.noreply.github.com> AuthorDate: Wed Nov 2 16:52:18 2022 +0800 [fix](Nereids) throw NPE when call getOutputExprIds in LogicalProperties (#13898) --- .../java/org/apache/doris/nereids/properties/LogicalProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/LogicalProperties.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/LogicalProperties.java index c0cae91f7c..cf8921e843 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/LogicalProperties.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/LogicalProperties.java @@ -71,7 +71,7 @@ public class LogicalProperties { public List<Id> getOutputExprIds() { if (outputExprIds == null) { - outputExprIds = outputExprIdSet.stream().map(Id.class::cast).collect(Collectors.toList()); + outputExprIds = getOutputExprIdSet().stream().map(Id.class::cast).collect(Collectors.toList()); } return outputExprIds; } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org