Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sqla_vertica_python/vertica_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def has_schema(self, connection, schema):
return bool(rs.scalar())


def has_table(self, connection, table_name, schema=None):
def has_table(self, connection, table_name, schema=None, info_cache=None):
if schema is None:
schema = self._get_default_schema_name(connection)
query = ("SELECT EXISTS ("
Expand Down