Fan Zhang created QPID-4804:
-------------------------------

             Summary: datetime type and timestamp type convert problem in qpid 
python client
                 Key: QPID-4804
                 URL: https://issues.apache.org/jira/browse/QPID-4804
             Project: Qpid
          Issue Type: Bug
          Components: Python Client
    Affects Versions: 0.18
         Environment: RedHat Linux
            Reporter: Fan Zhang


When client input a value which is datetime type to qpid server, then server 
receive this value from qpid server, this value's type become 
timestamp(qpid.datatypes.timestamp), I think the value's type shouldn't change 
to timestamp.
I think this code do the conversion in 
/usr/lib/python2.6/site-packages/qpid/codec010.py file:

  def read_datetime(self):
    return timestamp(self.read_uint64())
  def write_datetime(self, t):
    if isinstance(t, datetime.datetime):
      t = timestamp(t)
    self.write_uint64(t)

I think maybe we need change code like this, change "return 
timestamp(self.read_uint64())" to "return 
datetime.datetime.fromtimestamp(timestamp(self.read_uint64()))"


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to