Copilot commented on code in PR #12973:
URL: https://github.com/apache/gluten/pull/12973#discussion_r3949836806


##########
backends-clickhouse/src/test/scala/org/apache/gluten/execution/metrics/GlutenClickHouseTPCDSMetricsSuite.scala:
##########
@@ -87,7 +87,10 @@ class GlutenClickHouseTPCDSMetricsSuite extends 
GlutenClickHouseTPCDSAbstractSui
     ) {
       () =>
         val allGlutenPlans = wholeStageTransformer.collect {
-          case g: GlutenPlan if !g.isInstanceOf[InputIteratorTransformer] => g
+          case g: GlutenPlan
+              if !g.isInstanceOf[InputIteratorTransformer] &&
+                !g.isInstanceOf[ColumnarInputAdapter] =>

Review Comment:
   `ColumnarInputAdapter` is referenced but not imported in this file, so this 
will not compile unless it is in scope. Either add an import or qualify the 
type at the usage site.



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