We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2869d4 commit a66e38fCopy full SHA for a66e38f
sql/core/src/main/scala/org/apache/spark/sql/GroupedData.scala
@@ -40,22 +40,22 @@ private[sql] object GroupedData {
40
/**
41
* The Grouping Type
42
*/
43
- private[sql] trait GroupType
+ trait GroupType
44
45
46
* To indicate it's the GroupBy
47
48
- private[sql] object GroupByType extends GroupType
+ object GroupByType extends GroupType
49
50
51
* To indicate it's the CUBE
52
53
- private[sql] object CubeType extends GroupType
+ object CubeType extends GroupType
54
55
56
* To indicate it's the ROLLUP
57
58
- private[sql] object RollupType extends GroupType
+ object RollupType extends GroupType
59
}
60
61
0 commit comments