(self, cursor, user, sql_stmt)
| 667 | return None |
| 668 | |
| 669 | def __log_execute(self, cursor, user, sql_stmt): |
| 670 | self.log_client( |
| 671 | (u"executing against {0} at {1}. session: {2} main_cursor: {3} " |
| 672 | u"user: {4}\n{5}").format( |
| 673 | (self._is_hive and 'Hive' or 'Impala'), self.__host_port, |
| 674 | self.__get_session_id(cursor), (cursor == self.default_cursor()), user, |
| 675 | format_sql_for_logging(sql_stmt)) |
| 676 | ) |
| 677 | |
| 678 | def execute(self, sql_stmt, user=None, fetch_profile_after_close=False, |
| 679 | fetch_exec_summary=False, profile_format=TRuntimeProfileFormat.STRING): |
no test coverage detected