(self, vector)
| 40 | or v.get_value('table_format').file_format == 'text') |
| 41 | |
| 42 | def test_tablesample(self, vector): |
| 43 | # Do not use a .test to avoid making this test flaky. |
| 44 | # 1. Queries without the repeatable clause are non-deterministic. |
| 45 | # 2. The results of queries without a repeatable clause could change due to |
| 46 | # changes in data loading that affect the number or size of files. |
| 47 | with self.change_database(self.client, vector.get_value('table_format')): |
| 48 | self.__run_tablesample(vector) |
| 49 | |
| 50 | def __run_tablesample(self, vector): |
| 51 | repeatable = vector.get_value('repeatable') |
nothing calls this directly
no test coverage detected