(self)
| 204 | |
| 205 | @needs_session() |
| 206 | def test_show_column_stats(self): |
| 207 | fetch_results_resp = self.__query_and_fetch("SHOW COLUMN STATS functional.alltypes") |
| 208 | num_rows, result = self.column_results_to_string(fetch_results_resp.results.columns) |
| 209 | assert num_rows == 13 |
| 210 | assert re.match(r"id, INT, -?\d+, -?\d+, -?\d+, 4.0", result) is not None |
| 211 | |
| 212 | @needs_session(TCLIService.TProtocolVersion.HIVE_CLI_SERVICE_PROTOCOL_V1) |
| 213 | def test_execute_select_v1(self): |
nothing calls this directly
no test coverage detected