vertica-python
vertica-python copied to clipboard
Official native Python client for the Vertica Analytics Database.
The issue is related to versions 0.9.1 and 0.9.2. But it is probably manifested on versions newer then 0.6.14 (not and exact version number). On several places, there is used...
While debugging another timeout issue, I noticed read_timeout isn't used anywhere in the code: https://github.com/uber/vertica-python/search?q=read_timeout&type=Code (it's only setting the default value, but the option isn't used anywhere and the other...
As mentioned in #185, other clients have polling (e.g. JDBC's ResultSet.getWarnings()) or event driven (ADO.NET's InfoMessage) API's to check for warnings out of band. We need something like that for...
As maintenance of this project seems to be clear now, I would like to ask, where documentation is happening (in order to facilitate contribution). So far, I only found the...
- vertica-python==1.3.8 - vertica 11.x - sqlalchemy-vertica-python v.0.5.10 - pandas==2.1.4 In our code, we have several workers running simple queries such as below. However, we started seeing errors where pandas...
### Issue Description New connections each create a unique logger. These loggers end up in `logging.Logger.manager.loggerDict` which is not cleaned up, causing memory usage to increase with each new connection...
Hi folks! How does it even work? ``` cursor.execute(""" select 'abc' 'bca' as col """) cursor.fetchall() [['abcbca']] ``` I mean this code does not work in VJDBC, it raises >...
- Add new connection option `tlsmode`. - When connection option `ssl` is not set, change its behavior from tlsmode='disable' to tlsmode='prefer'.
Hey All! I'm implementing a script querying a vertica db & I'd like to "pipe" the results into a pyarrow table. I wat thinking about feeding the table with list...
This MR adds strict client-side validation for TOTP values in the Python driver to prevent invalid authentication requests from being sent to the server. Problem The Python driver currently allows...