From 036cbc0cd010ea54758cdd546e76d2eae1edc6fe Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 10:17:31 +0000 Subject: [PATCH] chore(NoTicket): remove enable_create_table_with_struct_type setting Co-Authored-By: petro.tiurin@firebolt.io --- tests/integration/dbapi/conftest.py | 1 - 1 file changed, 1 deletion(-) 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);