(cls)
| 363 | is not a constant string.""" |
| 364 | @classmethod |
| 365 | def add_test_dimensions(cls): |
| 366 | super(TestNonConstPatternILike, cls).add_test_dimensions() |
| 367 | # This test does not care about the file format of test table. |
| 368 | # Fix the table format to text. |
| 369 | cls.ImpalaTestMatrix.add_dimension( |
| 370 | create_uncompressed_text_dimension(cls.get_workload())) |
| 371 | |
| 372 | def test_non_const_pattern_ilike(self, vector, unique_database): |
| 373 | with self.create_impala_client_from_vector(vector) as client: |
nothing calls this directly
no test coverage detected