mcdull-zhang commented on PR #36483:
URL: https://github.com/apache/spark/pull/36483#issuecomment-1120704735

   @ulysses-you   thank you for your suggestion.
   
   If you change the SQL to
   ```sql
   SELECT * from testData LEFT JOIN testData2 ON key = a AND a>10 LATERAL VIEW 
EXPLODE(array(1,2,3)) AS vid
   ```
   Then physical plan after optimized looks like:
   ```tex
   Generate explode
       Project
           AQEShuffleRead
               ...
   ```
   
   In this way, AQEShuffleRead is under Generate and Project.
   
   Or do you mean to find out all AQEShuffleRead located under Project? Then 
judge and deal with it?


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