guixiaowen opened a new issue, #1436:
URL: https://github.com/apache/auron/issues/1436
code:
`
def convertSparkPlan(exec: SparkPlan): SparkPlan = {
exec match {
case e: ShuffleExchangeExec => tryConvert(e,
convertShuffleExchangeExec)
case e: BroadcastExchangeExec if enableBroadcastExchange =>
tryConvert(e, convertBroadcastExchangeExec)
case e: ShuffleExchangeExec if enableExchange => tryConvert(e,
convertShuffleExchangeExec)
case e: BroadcastExchangeExec =>
tryConvert(e, convertBroadcastExchangeExec)
`
With the current logic, `ShuffleExchangeExec` will be converted regardless
of the `enableExchange` condition.
--
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]