diff --git a/tests/integration/dbapi/conftest.py b/tests/integration/dbapi/conftest.py index 36929d4b7f7..d4e64b19704 100644 --- a/tests/integration/dbapi/conftest.py +++ b/tests/integration/dbapi/conftest.py @@ -220,7 +220,6 @@ def setup_struct_query() -> str: SET enable_create_table_v2=true; SET enable_struct_syntax=true; SET prevent_create_on_information_schema=true; - SET enable_create_table_with_struct_type=true; DROP TABLE IF EXISTS test_struct; DROP TABLE IF EXISTS test_struct_helper; CREATE TABLE IF NOT EXISTS test_struct(id int not null, s struct(a array(int) null, b datetime null) not null);