-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IGNITE-24036 Sql schema. Introduce QualifiedName class #4971
base: main
Are you sure you want to change the base?
Conversation
75843ff
to
ba05875
Compare
modules/api/src/main/java/org/apache/ignite/table/QualifiedName.java
Outdated
Show resolved
Hide resolved
} | ||
|
||
private static void verifyObjectName(@Nullable String name) { | ||
if (name == null || name.isEmpty()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (name == null || name.isEmpty()) { | |
if (org.apache.ignite.internal.util.StringUtils#nullOrEmpty(name)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Internal package from ignite-core module is not available in ignite-api module.
* Unquoted name will be cast to upper case. E.g. "tbl0" - is equivalent to "TBL0", "\"Tbl0\"" - "Tbl0", etc. | ||
*/ | ||
public class QualifiedName { | ||
static final String DEFAULT_SCHEMA_NAME = "PUBLIC"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
plz also fix it here SqlCommon#DEFAULT_SCHEMA_NAME
} | ||
|
||
/** Normalized schema name. */ | ||
private final String schemaIdentifier; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
plz move it into beginning, just become more readable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done.
foundDot = false; | ||
return ""; | ||
} | ||
throw new NoSuchElementException("No more tokens available."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this exception can be returned through public api, but what does it mean from user point of view, may be it need be wrapped ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Thank you for submitting the pull request.
To streamline the review process of the patch and ensure better code quality
we ask both an author and a reviewer to verify the following:
The Review Checklist
- There is a single JIRA ticket related to the pull request.
- The web-link to the pull request is attached to the JIRA ticket.
- The JIRA ticket has the Patch Available state.
- The description of the JIRA ticket explains WHAT was made, WHY and HOW.
- The pull request title is treated as the final commit message. The following pattern must be used: IGNITE-XXXX Change summary where XXXX - number of JIRA issue.
Notes