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

Fix inaccurate aggregate outputRows estimation with column containing null values

    XMLWordPrintableJSON

Details

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

    Description

      This issue is follow up of https://github.com/apache/spark/pull/24286. As smilegator pointed out that column with null value is inaccurate as well.

      > select key from test;
      2
      NULL
      1
      spark-sql> desc extended test key;
      col_name key
      data_type int
      comment NULL
      min 1
      max 2
      num_nulls 1
      distinct_count 2

      The distinct count should be distinct_count + 1 when the column contains null value.

      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: