Skip to content

Commit

Permalink
fix tests part3
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar committed Jun 6, 2024
1 parent dc6f3b5 commit d89f9f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _take_data_types(self, table: Table) -> dict[str, str] | None:

def remove_table(self, table_name: str) -> None:
with self._db_engine.connect() as connection:
connection.execute(text(f"DROP TABLE IF EXISTS {table_name}"))
connection.execute(text(f"DROP TABLE IF EXISTS {table_name} CASCADE"))


class TableToDfConvertor(ABC):
Expand Down

0 comments on commit d89f9f2

Please sign in to comment.