VladBanar commented on code in PR #3447:
URL: https://github.com/apache/fluss/pull/3447#discussion_r3462084854


##########
fluss-client/src/test/java/org/apache/fluss/client/converter/PojoArrayToFlussArrayTest.java:
##########
@@ -242,6 +243,12 @@ public void testArrayWithAllTypes() {
 
         assertThat(resultMap2).containsEntry("test_3", 3);
         assertThat(resultMap2).containsEntry("test_4", 4);
+        // Verify enum array
+        InternalArray enumArray = row.getArray(22);
+        assertThat(enumArray.size()).isEqualTo(3);
+        assertThat(enumArray.getString(0).toString()).isEqualTo("PENDING");

Review Comment:
   added list and map fields to TestPojo for 
RowToPojoConverterTest:RowToPojoConverterTest



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