Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/e2e/test_complex_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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<STRING>,
map_col MAP<STRING, INTEGER>,
struct_col STRUCT<field1: STRING, field2: INTEGER>
Expand Down
Loading