(cls)
| 69 | |
| 70 | @classmethod |
| 71 | def add_test_dimensions(cls): |
| 72 | super(TestQueryFullSort, cls).add_test_dimensions() |
| 73 | cls.ImpalaTestMatrix.add_dimension(create_exec_option_dimension(cluster_sizes=[1])) |
| 74 | add_exec_option_dimension(cls, 'max_sort_run_size', MAX_SORT_RUN_SIZE) |
| 75 | |
| 76 | if cls.exploration_strategy() == 'core': |
| 77 | cls.ImpalaTestMatrix.add_constraint(lambda v: |
| 78 | v.get_value('table_format').file_format == 'parquet') |
| 79 | |
| 80 | def test_multiple_buffer_pool_limits(self, vector): |
| 81 | """Using lineitem table forces the multi-phase sort with low buffer_pool_limit. |
nothing calls this directly
no test coverage detected