vertica-python icon indicating copy to clipboard operation
vertica-python copied to clipboard

Official native Python client for the Vertica Analytics Database.

Results 20 vertica-python issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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...

enhancement

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...

enhancement

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...

enhancement

- 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...

bug

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 >...

question

- 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...