Skip to content

Commit

Permalink
Typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
concretevitamin committed Jul 29, 2014
1 parent 56a8e6e commit 5bf5586
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ abstract class LogicalPlan extends QueryPlan[LogicalPlan] {
protected class Estimates {
lazy val childrenEstimations = children.map(_.estimates)
lazy val cardinality: Long = childrenEstimations.map(_.cardinality).sum
lazy val numTuples: Long = childrenEstimations.map(_.size).sum
lazy val size: Long = childrenEstimations.map(_.numTuples).sum
lazy val numTuples: Long = childrenEstimations.map(_.numTuples).sum
lazy val size: Long = childrenEstimations.map(_.size).sum
}

/**
Expand Down

0 comments on commit 5bf5586

Please sign in to comment.