Skip to content

Commit 549061c

Browse files
Remove numTuples in Statistics for now.
1 parent 729a8e2 commit 549061c

File tree

1 file changed

+0
-6
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical

1 file changed

+0
-6
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/LogicalPlan.scala

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@ abstract class LogicalPlan extends QueryPlan[LogicalPlan] {
3333
* assign it a overriden version of `Statistics`.
3434
*/
3535
case class Statistics(
36-
/**
37-
* Number of output tuples. For leaf operators this defaults to 1, otherwise it is set to the
38-
* product of children's `numTuples`.
39-
*/
40-
numTuples: Long = childrenStats.map(_.numTuples).product,
41-
4236
/**
4337
* Physical size in bytes. For leaf operators this defaults to 1, otherwise it is set to the
4438
* product of children's `sizeInBytes`.

0 commit comments

Comments
 (0)