Re: [PR] [GLUTEN-5133]Modify the prompt information for TakeOrderedAndProjectE… [incubator-gluten]

2024-03-26 Thread via GitHub


ulysses-you merged PR #5134:
URL: https://github.com/apache/incubator-gluten/pull/5134


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



Re: [PR] [GLUTEN-5133]Modify the prompt information for TakeOrderedAndProjectE… [incubator-gluten]

2024-03-26 Thread via GitHub


github-actions[bot] commented on PR #5134:
URL: 
https://github.com/apache/incubator-gluten/pull/5134#issuecomment-2020923742

   Run Gluten Clickhouse CI


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



Re: [PR] [GLUTEN-5133]Modify the prompt information for TakeOrderedAndProjectE… [incubator-gluten]

2024-03-26 Thread via GitHub


github-actions[bot] commented on PR #5134:
URL: 
https://github.com/apache/incubator-gluten/pull/5134#issuecomment-2020922735

   https://github.com/apache/incubator-gluten/issues/5133


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



[PR] [GLUTEN-5133]Modify the prompt information for TakeOrderedAndProjectE… [incubator-gluten]

2024-03-26 Thread via GitHub


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