LuciferYang opened a new pull request #32669:
URL: https://github.com/apache/spark/pull/32669


   ### What changes were proposed in this pull request?
   After SPARK-29291 and SPARK-33352, there are still some compilation warnings 
about `procedure syntax is deprecated` as follows:
   
   ```
   [WARNING] [Warn] 
/spark/core/src/main/scala/org/apache/spark/MapOutputTracker.scala:723: 
[deprecation @  | origin= | version=2.13.0] procedure syntax is deprecated: 
instead, add `: Unit =` to explicitly declare `registerMergeResult`'s return 
type
   [WARNING] [Warn] 
/spark/core/src/main/scala/org/apache/spark/MapOutputTracker.scala:748: 
[deprecation @  | origin= | version=2.13.0] procedure syntax is deprecated: 
instead, add `: Unit =` to explicitly declare `unregisterMergeResult`'s return 
type
   [WARNING] [Warn] 
/spark/core/src/test/scala/org/apache/spark/util/collection/ExternalAppendOnlyMapSuite.scala:223:
 [deprecation @  | origin= | version=2.13.0] procedure syntax is deprecated: 
instead, add `: Unit =` to explicitly declare 
`testSimpleSpillingForAllCodecs`'s return type
   [WARNING] [Warn] 
/spark/mllib-local/src/test/scala/org/apache/spark/ml/linalg/BLASBenchmark.scala:53:
 [deprecation @  | origin= | version=2.13.0] procedure syntax is deprecated: 
instead, add `: Unit =` to explicitly declare `runBLASBenchmark`'s return type
   [WARNING] [Warn] 
/spark/sql/core/src/main/scala/org/apache/spark/sql/execution/command/DataWritingCommand.scala:110:
 [deprecation @  | origin= | version=2.13.0] procedure syntax is deprecated: 
instead, add `: Unit =` to explicitly declare `assertEmptyRootPath`'s return 
type
   [WARNING] [Warn] 
/spark/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala:602:
 [deprecation @  | origin= | version=2.13.0] procedure syntax is deprecated: 
instead, add `: Unit =` to explicitly declare 
`executeCTASWithNonEmptyLocation`'s return type
   ```
   
   So the main change of this pr is cleanup these compilation warnings.
   
   ### Why are the changes needed?
   Eliminate compilation warnings in Scala 2.13 and this change should be 
compatible with Scala 2.12
   
   ### Does this PR introduce _any_ user-facing change?
   No
   
   
   ### How was this patch tested?
   Pass the Jenkins or GitHub Action


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

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