MINOR: e2e fixes (#22787)

This commit is contained in:
harshsoni2024 2025-08-07 02:41:02 +05:30 committed by GitHub
parent d376bc1aa9
commit 42572747ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -85,7 +85,9 @@ class RedshiftCliTest(CliCommonDB.TestSuite, SQACommonMethods):
SQACommonMethods.create_table_and_view(self)
def delete_table_and_view(self) -> None:
SQACommonMethods.delete_table_and_view(self)
with self.engine.connect() as connection:
connection.execute(self.drop_view_query)
connection.execute(self.drop_table_query)
def delete_table_rows(self) -> None:
SQACommonMethods.run_delete_queries(self)