Skip to content

Releases: questdb/py-questdb-client

1.0.2

31 Oct 21:13
d9fa199

Choose a tag to compare

  • Support for Python 3.11.
  • Updated to version 2.1.1 of the c-questdb-client library:
    • Setting SO_REUSEADDR on outbound socket. This is helpful to users with large number of connections who previously ran out of outbound network ports.

1.0.1

16 Aug 21:00
cf00547

Choose a tag to compare

  • Fixed a major bug where Python int and float types were handled with 32-bit instead of 64-bit precision. This caused certain int values to be rejected and other float values to be rounded incorrectly. Closes #13.
  • As a matter of convenience, the Buffer.row method can now take None column values. This has the same semantics as skipping the column altogether. Closes #3.
  • Fixed a minor bug where an auto-flush error caused a second clean-up error. Closes #4.