(cls)
| 309 | |
| 310 | @classmethod |
| 311 | def add_test_dimensions(cls): |
| 312 | super(TestPartialSort, cls).add_test_dimensions() |
| 313 | add_exec_option_dimension(cls, 'max_sort_run_size', MAX_SORT_RUN_SIZE) |
| 314 | |
| 315 | if cls.exploration_strategy() == 'core': |
| 316 | cls.ImpalaTestMatrix.add_constraint(lambda v: |
| 317 | v.get_value('table_format').file_format == 'parquet') |
| 318 | |
| 319 | def test_partial_sort_min_reservation(self, vector, unique_database): |
| 320 | """Test that the partial sort node can operate if it only gets its minimum |
nothing calls this directly
no test coverage detected