@@ -14,7 +14,7 @@ def table_fixture(self, connection_details):
1414# Create the table
1515cursor .execute (
1616"""
17- CREATE TABLE IF NOT EXISTSpysql_test_complex_types_table (
17+ CREATE TABLE IF NOT EXISTSpysql_e2e_test_complex_types_table (
1818 array_col ARRAY<STRING>,
1919 map_col MAP<STRING, INTEGER>,
2020 struct_col STRUCT<field1: STRING, field2: INTEGER>
@@ -24,7 +24,7 @@ def table_fixture(self, connection_details):
2424# Insert a record
2525cursor .execute (
2626"""
27- INSERT INTOpysql_test_complex_types_table
27+ INSERT INTOpysql_e2e_test_complex_types_table
2828 VALUES (
2929 ARRAY('a', 'b', 'c'),
3030 MAP('a', 1, 'b', 2, 'c', 3),
@@ -34,7 +34,7 @@ def table_fixture(self, connection_details):
3434 )
3535yield
3636# Clean up the table after the test
37- cursor .execute ("DROP TABLE IF EXISTSpysql_test_complex_types_table " )
37+ cursor .execute ("DROP TABLE IF EXISTSpysql_e2e_test_complex_types_table " )
3838
3939@pytest .mark .parametrize (
4040"field,expected_type" ,
@@ -45,7 +45,7 @@ def test_read_complex_types_as_arrow(self, field, expected_type, table_fixture):
4545
4646with self .cursor ()as cursor :
4747result = cursor .execute (
48- "SELECT * FROMpysql_test_complex_types_table LIMIT 1"
48+ "SELECT * FROMpysql_e2e_test_complex_types_table LIMIT 1"
4949 ).fetchone ()
5050
5151assert isinstance (result [field ],expected_type )
@@ -57,7 +57,7 @@ def test_read_complex_types_as_string(self, field, table_fixture):
5757extra_params = {"_use_arrow_native_complex_types" :False }
5858 )as cursor :
5959result = cursor .execute (
60- "SELECT * FROMpysql_test_complex_types_table LIMIT 1"
60+ "SELECT * FROMpysql_e2e_test_complex_types_table LIMIT 1"
6161 ).fetchone ()
6262
6363assert isinstance (result [field ],str )