HyukjinKwon commented on a change in pull request #24136: [SPARK-27088][SQL]  
Add a configuration to set log level for each batch at RuleExecutor
URL: https://github.com/apache/spark/pull/24136#discussion_r268607589
 
 

 ##########
 File path: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/OptimizerLoggingSuite.scala
 ##########
 @@ -35,14 +35,17 @@ class OptimizerLoggingSuite extends PlanTest {
     val batches = Batch("Optimizer Batch", FixedPoint(100),
       PushDownPredicate,
       ColumnPruning,
-      CollapseProject) :: Nil
+      CollapseProject) :: Batch("BatchHasNoEffect", Once,
+      ColumnPruning) :: Nil
 
 Review comment:
   Can you keep the indentation consistent like
   
   ```scala
   Seq(
     Batch(...,
       ...
     Batch(...
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

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

Reply via email to