File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 172172RUNNING_ON_GH = os .getenv ("GITHUB_ACTIONS" ) == "true"
173173
174174ICEBERG_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:
You can’t perform that action at this time.
0 commit comments