jinchengchenghh commented on code in PR #11342:
URL:
https://github.com/apache/incubator-gluten/pull/11342#discussion_r2652054745
##########
gluten-ut/spark40/src/test/scala/org/apache/spark/sql/execution/adaptive/velox/VeloxAdaptiveQueryExecSuite.scala:
##########
@@ -986,15 +987,16 @@ class VeloxAdaptiveQueryExecSuite extends
AdaptiveQueryExecSuite with GlutenSQLT
// Repartition with non-default partition num specified.
checkSMJ(
- df.repartition(4, 'b),
+ df.repartition(4, Symbol("b")),
Review Comment:
Syntax | Valid | Notes
-- | -- | --
df.repartition(4, 'b) | ✅ | Old-style, works
df.repartition(4, Symbol("b")) | ✅ | Same as above
df.repartition(4, col("b")) | ✅ | Recommended
df.repartition(4, 'b), | ❌ | Syntax error
--
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]