diff --git a/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/PushDownOperatorsToDataSource.scala b/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/PushDownOperatorsToDataSource.scala index 55be77932d9f1..566a48394f02e 100644 --- a/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/PushDownOperatorsToDataSource.scala +++ b/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/PushDownOperatorsToDataSource.scala @@ -105,8 +105,8 @@ object PushDownOperatorsToDataSource extends Rule[LogicalPlan] with PredicateHel case _ => } - // TODO: there may be more operators can be used to calculate required columns, we can add - // more and more in the future. + // TODO: there may be more operators that can be used to calculate the required columns. We + // can add more and more in the future. case _ => plan.children.foreach(child => pushDownRequiredColumns(child, child.outputSet)) } }