Skip to content

Commit

Permalink
[SPARK-45510][SQL] Replace scala.collection.generic.Growable to `sc…
Browse files Browse the repository at this point in the history
…ala.collection.mutable.Growable`

### What changes were proposed in this pull request?
Since scala 2.13.0, `scala.collection.generic.Growable` marked as deprecated. This PR change it to `scala.collection.mutable.Growable`

### Why are the changes needed?
Remove deprecated api.

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?
exist test.

### Was this patch authored or co-authored using generative AI tooling?
No

Closes apache#43347 from Hisoka-X/SPARK-45510-replace-growable.

Authored-by: Jia Fan <[email protected]>
Signed-off-by: yangjie01 <[email protected]>
  • Loading branch information
Hisoka-X authored and LuciferYang committed Oct 12, 2023
1 parent e69752a commit 385a2f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

package org.apache.spark.sql.catalyst.expressions.aggregate

import scala.collection.generic.Growable
import scala.collection.mutable
import scala.collection.mutable.Growable

import org.apache.spark.sql.catalyst.InternalRow
import org.apache.spark.sql.catalyst.analysis.TypeCheckResult
Expand Down

0 comments on commit 385a2f5

Please sign in to comment.