From d3b96e3a9c0177ed254224936221c414b13a3393 Mon Sep 17 00:00:00 2001 From: samikshya-chand_data Date: Mon, 16 Jun 2025 00:20:39 +0530 Subject: [PATCH] Fix flaky integration test --- tests/e2e/test_complex_types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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