maytasm commented on a change in pull request #11922:
URL: https://github.com/apache/druid/pull/11922#discussion_r751148615



##########
File path: 
server/src/main/java/org/apache/druid/server/coordinator/duty/CompactSegments.java
##########
@@ -364,6 +365,16 @@ private CoordinatorStats doRun(
           dimensionsSpec = null;
         }
 
+        // Create transformSpec to send to compaction task
+        ClientCompactionTaskTransformSpec transformSpec;
+        if (config.getTransformSpec() != null) {
+          transformSpec = new ClientCompactionTaskTransformSpec(
+              config.getTransformSpec().getFilter()
+          );
+        } else {
+          transformSpec = null;
+        }

Review comment:
       Done




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



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to