[fix](nereids)in physical plan, print join class simple name not full name #25515

This commit is contained in:
minghong
2023-10-17 20:25:14 +08:00
committed by GitHub
parent 9b1cdd3230
commit d287f53d77

View File

@ -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());
}
}