[fix](nereids)in physical plan, print join class simple name not full name #25515
This commit is contained in:
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user