Skip to content

Commit

Permalink
Remove numTuples in Statistics for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
concretevitamin committed Jul 29, 2014
1 parent 729a8e2 commit 549061c
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ abstract class LogicalPlan extends QueryPlan[LogicalPlan] {
* assign it a overriden version of `Statistics`.
*/
case class Statistics(
/**
* Number of output tuples. For leaf operators this defaults to 1, otherwise it is set to the
* product of children's `numTuples`.
*/
numTuples: Long = childrenStats.map(_.numTuples).product,

/**
* Physical size in bytes. For leaf operators this defaults to 1, otherwise it is set to the
* product of children's `sizeInBytes`.
Expand Down

0 comments on commit 549061c

Please sign in to comment.