This is an automated email from the ASF dual-hosted git repository. morrysnow pushed a commit to branch runtimefilter_multi_send in repository https://gitbox.apache.org/repos/asf/doris.git
commit 0424b19fb69c9c115dd052753d98c3e45d784f38 Author: morrySnow <[email protected]> AuthorDate: Sat Jul 1 23:59:03 2023 +0800 [opt](Nereids) optimize explain stream of DataStreamSink --- .idea/vcs.xml | 26 ++++++---------------- .../org/apache/doris/planner/DataStreamSink.java | 2 +- 2 files changed, 8 insertions(+), 20 deletions(-) diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 77fcf54857..636e3e94bc 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,24 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - --> <project version="4"> - <component name="VcsDirectoryMappings"> - <mapping directory="$PROJECT_DIR$" vcs="Git" /> - </component> <component name="IssueNavigationConfiguration"> <option name="links"> <list> @@ -29,4 +10,11 @@ </list> </option> </component> + <component name="VcsDirectoryMappings"> + <mapping directory="$PROJECT_DIR$" vcs="Git" /> + <mapping directory="$PROJECT_DIR$/.github/actions/setup-maven" vcs="Git" /> + <mapping directory="$PROJECT_DIR$/be/src/apache-orc" vcs="Git" /> + <mapping directory="$PROJECT_DIR$/be/src/clucene" vcs="Git" /> + <mapping directory="$PROJECT_DIR$/website" vcs="Git" /> + </component> </project> \ No newline at end of file diff --git a/fe/fe-core/src/main/java/org/apache/doris/planner/DataStreamSink.java b/fe/fe-core/src/main/java/org/apache/doris/planner/DataStreamSink.java index 9e90df652a..6a43694527 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/planner/DataStreamSink.java +++ b/fe/fe-core/src/main/java/org/apache/doris/planner/DataStreamSink.java @@ -112,7 +112,7 @@ public class DataStreamSink extends DataSink { } if (!conjuncts.isEmpty()) { Expr expr = PlanNode.convertConjunctsToAndCompoundPredicate(conjuncts); - strBuilder.append(prefix).append(" CONJUNCTS: ").append(expr.toSql()); + strBuilder.append(prefix).append(" CONJUNCTS: ").append(expr.toSql()).append("\n"); } if (!CollectionUtils.isEmpty(projections)) { strBuilder.append(prefix).append(" PROJECTIONS: ") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
