danny0405 commented on code in PR #18539:
URL: https://github.com/apache/hudi/pull/18539#discussion_r3233608783


##########
hudi-client/hudi-flink-client/src/test/java/org/apache/hudi/util/TestHoodieSchemaConverter.java:
##########
@@ -692,27 +693,35 @@ public void testBlobInNestedStructures() {
     assertEquals(HoodieSchemaType.BLOB, convertedMap.getValueType().getType());
   }
 
+  private static boolean hasNativeVariantType() {
+    try {
+      DataTypeAdapter.createVariantType();
+      return true;
+    } catch (UnsupportedOperationException e) {
+      return false;
+    }
+  }
+
   @Test
   @Disabled("disabled and reopen the tests for 1.3")
   public void testVariantTypeConversion() {
-    // Test direct Variant conversion

Review Comment:
   is your code rebased based on latest master, the test should be enabled 
already



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