diff --git a/tests/e2e/test_complex_types.py b/tests/e2e/test_complex_types.py index 4af4f7b67..87db5b26f 100644 --- a/tests/e2e/test_complex_types.py +++ b/tests/e2e/test_complex_types.py @@ -12,9 +12,10 @@ def table_fixture(self, connection_details): with self.cursor() as cursor: # Create the table + cursor.execute("""DROP TABLE IF EXISTS pysql_e2e_test_complex_types_table""") cursor.execute( """ - CREATE TABLE IF NOT EXISTS pysql_e2e_test_complex_types_table ( + CREATE TABLE pysql_e2e_test_complex_types_table ( array_col ARRAY, map_col MAP, struct_col STRUCT