questdb / py-questdb-client

Python client for QuestDB InfluxDB Line Protocol
https://py-questdb-client.readthedocs.io
Apache License 2.0
50 stars 7 forks source link

Bug: Python `int` and `float` objects are downcast to 32-bit types before sending. #13

Closed amunra closed 1 year ago

amunra commented 1 year ago

Pyhon int and float objects are currently converted to 32-bit C int and C float types instead of the 64-bit int64_t and double types in C. This is due to an error in the Cython binding code which uses the wrong datatypes. A fix is imminent which will transmit these numbers correctly.