felixYyu opened a new issue #3615:
URL: https://github.com/apache/iceberg/issues/3615


   in Spark3SortStrategy class file
   import org.apache.spark.sql.catalyst.utils.DistributionAndOrderingUtils$;
   protected LogicalPlan sortPlan(Distribution distribution, SortOrder[] 
ordering, LogicalPlan plan, SQLConf conf) {
       return DistributionAndOrderingUtils$.MODULE$.prepareQuery(distribution, 
ordering, plan, conf);
   }
   '$' has been used, why
   
------------------------------------------------------------------------------------------------------------
   import org.apache.spark.sql.catalyst.utils.DistributionAndOrderingUtils;
   protected LogicalPlan sortPlan(Distribution distribution, SortOrder[] 
ordering, LogicalPlan plan, SQLConf conf) {
       return DistributionAndOrderingUtils.prepareQuery(distribution, ordering, 
plan, conf);
   }
   this format is also right?
   
   


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