Skip to content

Commit acbd38f

Browse files
committed
set STRUCTURED_TYPES_SUPPORTED=False in test suite
1 parent 45637a2 commit acbd38f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/integ/test_arrow_result.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,12 @@
172172
RUNNING_ON_GH = os.getenv("GITHUB_ACTIONS") == "true"
173173

174174
ICEBERG_SUPPORTED = CLOUD in ICEBERG_ENVIRONMENTS and RUNNING_ON_GH or CLOUD == "dev"
175-
STRUCTURED_TYPES_SUPPORTED = (
176-
CLOUD in STRUCTRED_TYPE_ENVIRONMENTS and RUNNING_ON_GH or CLOUD == "dev"
177-
)
175+
# STRUCTURED_TYPES_SUPPORTED = (
176+
# CLOUD in STRUCTRED_TYPE_ENVIRONMENTS and RUNNING_ON_GH or CLOUD == "dev"
177+
# )
178+
# Note whummer (2024-12-29): setting this to False, as otherwise invalid tests are being generated,
179+
# using e.g., `CREATE TABLE(c1 ARRAY(FLOAT))` which is invalid in standard case (verified against real SF)
180+
STRUCTURED_TYPES_SUPPORTED = False
178181

179182
# Generate all valid test cases. By using pytest.param with an id you can
180183
# run a specific test case easier like so:

0 commit comments

Comments
 (0)