shenzhu commented on a change in pull request #17919:
URL: https://github.com/apache/flink/pull/17919#discussion_r757682218



##########
File path: 
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/functions/casting/StringToBinaryCastRule.java
##########
@@ -45,6 +52,28 @@ public String generateExpression(
             String inputTerm,
             LogicalType inputLogicalType,
             LogicalType targetLogicalType) {
-        return methodCall(inputTerm, "toBytes");
+        int inputLength = Integer.MAX_VALUE;
+        if (inputLogicalType instanceof CharType) {
+            inputLength = ((CharType) inputLogicalType).getLength();
+        } else if (inputLogicalType instanceof VarCharType) {
+            inputLength = ((VarCharType) inputLogicalType).getLength();
+        }
+
+        int targetLength = Integer.MAX_VALUE;
+        if (targetLogicalType instanceof BinaryType) {
+            targetLength = ((BinaryType) targetLogicalType).getLength();
+        } else if (targetLogicalType instanceof VarBinaryType) {
+            targetLength = ((VarBinaryType) targetLogicalType).getLength();
+        }
+        targetLength = Math.min(targetLength, inputLength);

Review comment:
       Hey @matriv , thanks for your review! I will update the code here.




-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to