Skip to content

Commit 279584c

Browse files
hiden the CubedData & RollupedData
1 parent ef357e1 commit 279584c

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

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

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -261,13 +261,9 @@ class GroupedData protected[sql](df: DataFrame, groupingExprs: Seq[Expression])
261261
}
262262

263263
/**
264-
* :: Experimental ::
265264
* A set of methods for aggregations on a [[DataFrame]] cube, created by [[DataFrame.cube]].
266-
*
267-
* @since 1.4.0
268265
*/
269-
@Experimental
270-
class CubedData protected[sql](df: DataFrame, groupingExprs: Seq[Expression])
266+
private[sql] class CubedData protected[sql](df: DataFrame, groupingExprs: Seq[Expression])
271267
extends GroupedData(df, groupingExprs) {
272268

273269
protected[sql] implicit override def toDF(aggExprs: Seq[NamedExpression]): DataFrame = {
@@ -277,13 +273,9 @@ class CubedData protected[sql](df: DataFrame, groupingExprs: Seq[Expression])
277273
}
278274

279275
/**
280-
* :: Experimental ::
281276
* A set of methods for aggregations on a [[DataFrame]] rollup, created by [[DataFrame.rollup]].
282-
*
283-
* @since 1.4.0
284277
*/
285-
@Experimental
286-
class RollupedData protected[sql](df: DataFrame, groupingExprs: Seq[Expression])
278+
private[sql] class RollupedData protected[sql](df: DataFrame, groupingExprs: Seq[Expression])
287279
extends GroupedData(df, groupingExprs) {
288280

289281
protected[sql] implicit override def toDF(aggExprs: Seq[NamedExpression]): DataFrame = {

0 commit comments

Comments
 (0)