(cls)
| 33 | |
| 34 | @classmethod |
| 35 | def add_test_dimensions(cls): |
| 36 | super(TestShellClient, cls).add_test_dimensions() |
| 37 | # Limit to uncompressed text with default exec options |
| 38 | cls.ImpalaTestMatrix.add_dimension( |
| 39 | create_uncompressed_text_dimension(cls.get_workload())) |
| 40 | cls.ImpalaTestMatrix.add_dimension(create_single_exec_option_dimension()) |
| 41 | # Run with beeswax and HS2 |
| 42 | cls.ImpalaTestMatrix.add_dimension(create_client_protocol_dimension()) |
| 43 | cls.ImpalaTestMatrix.add_dimension(create_client_protocol_no_strict_dimension()) |
| 44 | |
| 45 | def test_fetch_size(self, vector): |
| 46 | """Tests that when result spooling is disabled, setting a small batch_size causes |
nothing calls this directly
no test coverage detected