(self, operation_handle)
| 1096 | raise NotImplementedError() |
| 1097 | |
| 1098 | def get_log(self, operation_handle): |
| 1099 | self.log_handle(operation_handle, 'getting log for operation') |
| 1100 | # HS2 includes non-error log messages that we need to filter out. |
| 1101 | cursor = operation_handle.get_handle() |
| 1102 | lines = [line for line in cursor.get_log().split('\n') |
| 1103 | if not PROGRESS_LOG_RE.match(line)] |
| 1104 | return '\n'.join(lines) |
| 1105 | |
| 1106 | def set_configuration_option(self, name, value, is_log_sql=True): |
| 1107 | # Only set the option if it's not already set to the same value. |
nothing calls this directly
no test coverage detected