(cls)
| 129 | """ |
| 130 | @classmethod |
| 131 | def add_test_dimensions(cls): |
| 132 | super(TestKuduTimestampConvert, cls).add_test_dimensions() |
| 133 | cls.ImpalaTestMatrix.add_mandatory_exec_option('convert_kudu_utc_timestamps', 'true') |
| 134 | cls.ImpalaTestMatrix.add_mandatory_exec_option('write_kudu_utc_timestamps', 'true') |
| 135 | cls.ImpalaTestMatrix.add_mandatory_exec_option( |
| 136 | 'use_local_tz_for_unix_timestamp_conversions', 'false') |
| 137 | cls.ImpalaTestMatrix.add_mandatory_exec_option('timezone', '"America/Los_Angeles"') |
| 138 | |
| 139 | @SkipIfKudu.no_hybrid_clock() |
| 140 | def test_kudu_timestamp_conversion(self, vector, unique_database): |
nothing calls this directly
no test coverage detected