Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-27351

Wrong outputRows estimation after AggregateEstimation with only null value column

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 2.4.1
    • 2.4.2, 3.0.0
    • SQL
    • None

    Description

      The upper bound of group-by columns row number is to multiply distinct counts of group-by columns. However, column with only null value will cause the output row number to be 0 which is incorrect.

      Ex:
      col1 (distinct: 2, rowCount 2)
      col2 (distinct: 0, rowCount 2)

      group by col1, col2
      Actual: output rows: 0
      Expected: output rows: 2

      var outputRows: BigInt = agg.groupingExpressions.foldLeft(BigInt(1))(
              (res, expr) => res * childStats.attributeStats(expr.asInstanceOf[Attribute]).distinctCount)
      

      Attachments

        Issue Links

          Activity

            People

              pengbo peng bo
              pengbo peng bo
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: