Uploaded image for project: 'Apache Arrow'
  1. Apache Arrow
  2. ARROW-10345

[C++] NaN breaks sorting

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 2.0.0
    • 3.0.0
    • C++

    Description

      >>> import numpy as np
      >>> import pyarrow.compute as pc
      >>> pc.sort_indices([3.0, 4.0, 1.0, 2.0, None])
      <pyarrow.lib.UInt64Array object at 0x7f78368a0c90>
      [
        2,
        3,
        0,
        1,
        4
      ]
      >>> pc.sort_indices([3.0, 4.0, np.nan, 1.0, 2.0, None])
      <pyarrow.lib.UInt64Array object at 0x7f783684bf30>
      [
        0,
        1,
        2,
        3,
        4,
        5
      ]
      

      Attachments

        Activity

          People

            yibocai Yibo Cai
            apitrou Antoine Pitrou
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Time Tracking

                Estimated:
                Original Estimate - Not Specified
                Not Specified
                Remaining:
                Remaining Estimate - 0h
                0h
                Logged:
                Time Spent - 3h 40m
                3h 40m