snuyanzin commented on code in PR #29004:
URL: https://github.com/apache/flink/pull/29004#discussion_r3890056818


##########
flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/functions/SqlFunctionUtils.java:
##########
@@ -345,29 +331,49 @@ public static String rpad(String base, int len, String 
pad) {
             return "";
         }
 
-        char[] data = new char[len];
-        char[] baseChars = base.toCharArray();
-        char[] padChars = pad.toCharArray();
+        final int baseEnd = endOfCodePoints(base, len);
+        final int padChars = padLength(pad, len - base.codePointCount(0, 
baseEnd));
+        final char[] data = new char[baseEnd + padChars];
+
+        base.getChars(0, baseEnd, data, 0);
+        writePad(data, baseEnd, pad, padChars);
 
-        int pos = 0;
+        return new String(data);
+    }
 
-        // copy the base
-        while (pos < base.length() && pos < len) {
-            data[pos] = baseChars[pos];
-            pos += 1;
+    /** Index just past the first count code points of str, or its end if str 
holds fewer. */
+    private static int endOfCodePoints(String str, int count) {
+        final int length = str.length();
+        int index = 0;
+        for (int i = 0; i < count && index < length; i++) {
+            index += Character.charCount(str.codePointAt(index));
         }
+        return index;
+    }
 
-        // copy the padding
-        while (pos < len) {
-            int i = 0;
-            while (i < pad.length() && i < len - pos) {
-                data[pos + i] = padChars[i];
-                i += 1;
-            }
-            pos += pad.length();
+    /** Number of chars taken by count code points of pad repeated cyclically. 
*/
+    private static int padLength(String pad, int count) {
+        final int padLen = pad.length();
+        final int cycle = pad.codePointCount(0, padLen);
+        return (count / cycle) * padLen + endOfCodePoints(pad, count % cycle);

Review Comment:
   can we avoid second call of `endOfCodePoints`?



-- 
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]

Reply via email to