jonvex commented on code in PR #12075:
URL: https://github.com/apache/hudi/pull/12075#discussion_r1797108292


##########
hudi-utilities/src/test/java/org/apache/hudi/utilities/deltastreamer/TestHoodieDeltaStreamerSchemaEvolutionQuick.java:
##########
@@ -61,33 +61,35 @@ protected static Stream<Arguments> testArgs() {
     boolean fullTest = false;
     Stream.Builder<Arguments> b = Stream.builder();
     if (fullTest) {
-      //only testing row-writer enabled for now
       for (Boolean rowWriterEnable : new Boolean[] {false, true}) {
         for (Boolean nullForDeletedCols : new Boolean[] {false, true}) {
           for (Boolean useKafkaSource : new Boolean[] {false, true}) {
             for (Boolean addFilegroups : new Boolean[] {false, true}) {
               for (Boolean multiLogFiles : new Boolean[] {false, true}) {
-                for (Boolean shouldCluster : new Boolean[] {false, true}) {
-                  for (String tableType : new String[] {"COPY_ON_WRITE", 
"MERGE_ON_READ"}) {
-                    if (!multiLogFiles || tableType.equals("MERGE_ON_READ")) {
-                      b.add(Arguments.of(tableType, shouldCluster, false, 
rowWriterEnable, addFilegroups, multiLogFiles, useKafkaSource, 
nullForDeletedCols));
+                for (Boolean useParquetLogFile : new Boolean[] {false, true}) {
+                  for (Boolean shouldCluster : new Boolean[] {false, true}) {
+                    for (String tableType : new String[] {"COPY_ON_WRITE", 
"MERGE_ON_READ"}) {
+                      if ((!multiLogFiles && !useParquetLogFile) || 
tableType.equals("MERGE_ON_READ")) {
+                        b.add(Arguments.of(tableType, shouldCluster, false, 
rowWriterEnable, addFilegroups, multiLogFiles, useKafkaSource, 
nullForDeletedCols, useParquetLogFile));

Review Comment:
   Yes. It takes like 30 minutes. There was over 200 iterations



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