mihaibudiu commented on code in PR #4028:
URL: https://github.com/apache/calcite/pull/4028#discussion_r1826257912
##########
core/src/main/java/org/apache/calcite/util/NlsString.java:
##########
@@ -227,6 +227,27 @@ public NlsString rtrim() {
return this;
}
+ /**
+ * Returns a string the same as this but with spaces trimmed from the
+ * right such that the result has the specified size.
+ *
+ * @param resultSize Expected size for result string. If negative, it
indicates
+ * that no trimming should be done.
+ */
+ public NlsString rtrim(int resultSize) {
Review Comment:
Good catch, should call rtrim on the fragment, not trim.
--
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]