(self, operation_handle)
| 762 | return "" if id is None else id |
| 763 | |
| 764 | def session_id(self, operation_handle): |
| 765 | cursor = operation_handle.get_handle() |
| 766 | session_id = self.__get_session_id(cursor) |
| 767 | return session_id if session_id else str(cursor.session) |
| 768 | |
| 769 | def handle_id(self, operation_handle): |
| 770 | query_id = self.get_query_id(operation_handle) |