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


##########
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/functions/casting/CastRulesTest.java:
##########
@@ -162,6 +164,18 @@ class CastRulesTest {
 
     private static final Bitmap DEFAULT_BITMAP = Bitmap.fromArray(new int[] 
{0, 1, 2});
 
+    private static final String UUID_STRING = 
"550e8400-e29b-41d4-a716-446655440000";
+    private static final byte[] UUID_BYTES = uuidBytes(UUID_STRING);
+
+    private static byte[] uuidBytes(String uuid) {
+        final java.util.UUID value = java.util.UUID.fromString(uuid);
+        final byte[] result = new byte[16];
+        java.nio.ByteBuffer.wrap(result)

Review Comment:
   absolute name?



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