(cls)
| 160 | |
| 161 | @classmethod |
| 162 | def add_test_dimensions(cls): |
| 163 | super(TestFetchAndSpooling, cls).add_test_dimensions() |
| 164 | # Result fetching should be independent of file format, so only test against |
| 165 | # Parquet files. |
| 166 | cls.ImpalaTestMatrix.add_constraint(lambda v: |
| 167 | v.get_value('table_format').file_format == 'parquet') |
| 168 | # spool_query_results is set as true by default. |
| 169 | extend_exec_option_dimension(cls, 'spool_query_results', 'false') |
| 170 | |
| 171 | def test_rows_sent_counters(self, vector): |
| 172 | """Validate that RowsSent and RowsSentRate are set to valid values in |
nothing calls this directly
no test coverage detected