(cls)
| 195 | |
| 196 | @classmethod |
| 197 | def add_test_dimensions(cls): |
| 198 | super(TestFetchTimeout, cls).add_test_dimensions() |
| 199 | # Result fetching should be independent of file format, so only test against |
| 200 | # Parquet files. |
| 201 | cls.ImpalaTestMatrix.add_constraint(lambda v: |
| 202 | v.get_value('table_format').file_format == 'parquet') |
| 203 | extend_exec_option_dimension(cls, 'spool_query_results', 'true') |
| 204 | |
| 205 | def test_fetch_timeout(self, vector): |
| 206 | """A simple test that runs a query with a low timeout and introduces delays in |
no test coverage detected