guixiaowen opened a new pull request, #5134:
URL: https://github.com/apache/incubator-gluten/pull/5134

   …xecTransformer #5133
   
   ## What changes were proposed in this pull request?
   
   In TakeOrderedAndProjectExecTransformer, the prompt information is different 
from others.
   
   For example:
   
   spark-sql>explain select a from test.tablea order by a limit 5
   plan
   == Physical Plan ==
   VeloxColumnarToRowExec
   +- TakeOrderedAndProjectExecTransform(limit=5, orderBy=[a#13 ASC NULLS 
FIRST], output=[a#13])
   +- ^(3) NativeScan hive test.tablea [a#13], HiveTableRelation [test.tablea, 
org.apache.hadoop.hive.ql.io.orc.OrcSerde, Data Cols: [a#13], Partition Cols: 
[]]
   
   "TakeOrderedAndProjectExecTransform" is changed to 
""TakeOrderedAndProjectExecTransformer, which will be consistent with other 
enhanced information styles.
   
   (Fixes: \#5133)
   
   
   After this pr:
   
   spark-sql>explain select a from test.tablea order by a limit 5
   plan
   == Physical Plan ==
   VeloxColumnarToRowExec
   +- TakeOrderedAndProjectExecTransformer (limit=5, orderBy=[a#13 ASC NULLS 
FIRST], output=[a#13])
   +- ^(3) NativeScan hive test.tablea [a#13], HiveTableRelation [test.tablea, 
org.apache.hadoop.hive.ql.io.orc.OrcSerde, Data Cols: [a#13], Partition Cols: 
[]]
   
   ## How was this patch tested?
   
   
   


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