Uploaded image for project: 'Parquet'
  1. Parquet
  2. PARQUET-1222

Specify a well-defined sorting order for float and double types

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Critical
    • Resolution: Fixed
    • None
    • format-2.10.0
    • parquet-format
    • None

    Description

      Currently parquet-format specifies the sort order for floating point numbers as follows:

         *   FLOAT - signed comparison of the represented value
         *   DOUBLE - signed comparison of the represented value
      

      The problem is that the comparison of floating point numbers is only a partial ordering with strange behaviour in specific corner cases. For example, according to IEEE 754, -0 is neither less nor more than +0 and comparing NaN to anything always returns false. This ordering is not suitable for statistics. Additionally, the Java implementation already uses a different (total) ordering that handles these cases correctly but differently than the C++ implementations, which leads to interoperability problems.

      TypeDefinedOrder for doubles and floats should be deprecated and a new TotalFloatingPointOrder should be introduced. The default for writing doubles and floats would be the new TotalFloatingPointOrder. This ordering should be effective and easy to implement in all programming languages.

      Attachments

        Issue Links

          Activity

            People

              emkornfield Micah Kornfield
              zi Zoltan Ivanfi
              Votes:
              0 Vote for this issue
              Watchers:
              13 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: