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 729a8e2 commit 549061cCopy full SHA for 549061c
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/LogicalPlan.scala
@@ -33,12 +33,6 @@ abstract class LogicalPlan extends QueryPlan[LogicalPlan] {
33
* assign it a overriden version of `Statistics`.
34
*/
35
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
-
42
/**
43
* Physical size in bytes. For leaf operators this defaults to 1, otherwise it is set to the
44
* product of children's `sizeInBytes`.
0 commit comments