This is an automated email from the ASF dual-hosted git repository.
englefly 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 d287f53d770 [fix](nereids)in physical plan, print join class simple
name not full name #25515
d287f53d770 is described below
commit d287f53d770d35296d815bf0f607b8f188e9817f
Author: minghong <[email protected]>
AuthorDate: Tue Oct 17 20:25:14 2023 +0800
[fix](nereids)in physical plan, print join class simple name not full name
#25515
---
.../apache/doris/nereids/trees/plans/physical/AbstractPhysicalJoin.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/AbstractPhysicalJoin.java
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/AbstractPhysicalJoin.java
index ad7e8ba8cc8..acd2e381392 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/AbstractPhysicalJoin.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/AbstractPhysicalJoin.java
@@ -239,7 +239,7 @@ public abstract class AbstractPhysicalJoin<
args.add("runtimeFilters");
args.add(runtimeFilters.stream().map(rf -> rf.toString() + "
").collect(Collectors.toList()));
}
- return Utils.toSqlString(this.getClass().getName() + "[" + id.asInt()
+ "]" + getGroupIdWithPrefix(),
+ return Utils.toSqlString(this.getClass().getSimpleName() + "[" +
id.asInt() + "]" + getGroupIdWithPrefix(),
args.toArray());
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]