You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DatabaseWrapper object in vertica.base has a _set_autocommit method.
This method is trying to call self.connection.query(), which does not exist.
I've tried to replace it with self.connection.cursor().execute() and it worked.
Should I send a pull request?
The text was updated successfully, but these errors were encountered:
The
DatabaseWrapper
object in vertica.base has a_set_autocommit
method.This method is trying to call
self.connection.query()
, which does not exist.I've tried to replace it with
self.connection.cursor().execute()
and it worked.Should I send a pull request?
The text was updated successfully, but these errors were encountered: