(cls)
| 24 | class TestLocalFileSystem(ImpalaTestSuite): |
| 25 | @classmethod |
| 26 | def add_test_dimensions(cls): |
| 27 | super(TestLocalFileSystem, cls).add_test_dimensions() |
| 28 | cls.ImpalaTestMatrix.add_dimension(create_single_exec_option_dimension()) |
| 29 | |
| 30 | cls.ImpalaTestMatrix.add_constraint(lambda v:\ |
| 31 | v.get_value('table_format').file_format == 'text' and \ |
| 32 | v.get_value('table_format').compression_codec == 'none') |
| 33 | |
| 34 | @SkipIfDockerizedCluster.accesses_host_filesystem |
| 35 | def test_local_filesystem(self, vector, unique_database): |
nothing calls this directly
no test coverage detected