acvictor commented on code in PR #11657:
URL: 
https://github.com/apache/incubator-gluten/pull/11657#discussion_r2868713444


##########
cpp/velox/operators/plannodes/RowVectorStream.cc:
##########
@@ -166,7 +169,113 @@ std::optional<facebook::velox::RowVectorPtr> 
ValueStreamDataSource::next(
   completedRows_ += rowVector->size();
   completedBytes_ += rowVector->estimateFlatSize();
 
+  // Apply dynamic filters if any have been pushed down.
+  if (!dynamicFilters_.empty()) {
+    rowVector = applyDynamicFilters(rowVector);

Review Comment:
   Done - added tracking for number of dynamic filters accepted by value stream 
and number of rows filtered by value stream



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