jinchengchenghh commented on issue #9245:
URL: 
https://github.com/apache/incubator-gluten/issues/9245#issuecomment-2785790417

   I find the reason, because we invoke `executeQuery` in `TransformSupport`, 
but not invoke it in PartialProject.
   ```
     final def transform(context: SubstraitContext): TransformContext = {
       if (isCanonicalizedPlan) {
         throw new IllegalStateException(
           "A canonicalized plan is not supposed to be executed transform.")
       }
       if (TransformerState.underValidationState) {
         doTransform(context)
       } else {
         // Materialize subquery first before going to do transform.
         executeQuery {
           doTransform(context)
         }
       }
     }
   ```


-- 
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: commits-unsubscr...@gluten.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@gluten.apache.org
For additional commands, e-mail: commits-h...@gluten.apache.org

Reply via email to