Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit a66e38f

Browse files
remove the unnecessary code changes
1 parent a2869d4 commit a66e38f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sql/core/src/main/scala/org/apache/spark/sql/GroupedData.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,22 @@ private[sql] object GroupedData {
4040
/**
4141
* The Grouping Type
4242
*/
43-
private[sql] trait GroupType
43+
trait GroupType
4444

4545
/**
4646
* To indicate it's the GroupBy
4747
*/
48-
private[sql] object GroupByType extends GroupType
48+
object GroupByType extends GroupType
4949

5050
/**
5151
* To indicate it's the CUBE
5252
*/
53-
private[sql] object CubeType extends GroupType
53+
object CubeType extends GroupType
5454

5555
/**
5656
* To indicate it's the ROLLUP
5757
*/
58-
private[sql] object RollupType extends GroupType
58+
object RollupType extends GroupType
5959
}
6060

6161
/**

0 commit comments

Comments
 (0)