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

[Python] Incorrect serialization of numpy datetimes.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Won't Fix
    • None
    • None
    • Python

    Description

      See https://github.com/ray-project/ray/issues/1041.

      The issue can be reproduced as follows.

      import pyarrow as pa
      import numpy as np
      
      t = np.datetime64(datetime.datetime.now())
      
      print(type(t), t)  # <class 'numpy.datetime64'> 2017-09-30T09:50:46.089952
      
      t_new = pa.deserialize(pa.serialize(t).to_buffer())
      
      print(type(t_new), t_new)  # <class 'int'> 0
      

      Attachments

        Activity

          People

            Unassigned Unassigned
            robertnishihara Robert Nishihara
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: