(cls)
| 148 | |
| 149 | @classmethod |
| 150 | def add_test_dimensions(cls): |
| 151 | super(TestExprLimits, cls).add_test_dimensions() |
| 152 | if cls.exploration_strategy() != 'exhaustive': |
| 153 | # Ensure the test runs with codegen enabled and disabled, even when the |
| 154 | # exploration strategy is not exhaustive. |
| 155 | cls.ImpalaTestMatrix.clear_dimension('exec_option') |
| 156 | cls.ImpalaTestMatrix.add_dimension(create_exec_option_dimension( |
| 157 | cluster_sizes=[0], disable_codegen_options=[False, True], batch_sizes=[0])) |
| 158 | |
| 159 | # There is no reason to run these tests using all dimensions. |
| 160 | cls.ImpalaTestMatrix.add_dimension( |
| 161 | create_uncompressed_text_dimension(cls.get_workload())) |
| 162 | |
| 163 | def test_expr_child_limit(self, vector): |
| 164 | # IN predicate |
nothing calls this directly
no test coverage detected