zhztheplayer commented on code in PR #9074:
URL: https://github.com/apache/incubator-gluten/pull/9074#discussion_r2056870720


##########
gluten-substrait/src/main/scala/org/apache/gluten/extension/columnar/validator/Validators.scala:
##########
@@ -137,6 +137,7 @@ object Validators {
       case p: CartesianProductExec if !settings.supportCartesianProductExec() 
=> fail(p)
       case p: TakeOrderedAndProjectExec if 
!settings.supportColumnarShuffleExec() => fail(p)
       case p: CollectLimitExec if !settings.supportCollectLimitExec() => 
fail(p)
+      case p: CollectTailExec if !settings.supportCollectTailExec() => fail(p)

Review Comment:
   I think fallback tags only be checked in the transform rule (given we have 
pre-transform, transform, post-transform). If we   decide to offload the 
CollectTail operator in post-transform rules, then we don't have to add any 
logic to the validator. So I guess this line along with the API 
`settings.supportCollectTailExec` can all be removed, would you like to double 
check?



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