englefly commented on code in PR #23221:
URL: https://github.com/apache/doris/pull/23221#discussion_r1299569941
##########
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/LogicalCatalogRelation.java:
##########
@@ -97,13 +98,19 @@ public List<String> getQualifier() {
* Full qualified name parts, i.e., concat qualifier and name into a list.
*/
public List<String> qualified() {
+ if (qualifier.size() == 3) {
+ return qualifier;
+ }
return Utils.qualifiedNameParts(qualifier, table.getName());
}
/**
* Full qualified table name, concat qualifier and name with `.` as
separator.
*/
public String qualifiedName() {
+ if (qualifier.size() == 3) {
Review Comment:
why we use special branch?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]