The CONTINUE function passes the given breakflags (mask of interested events) to the monitor thread (Probe) of the target thread and tells the monitor thread to continue executing the target thread, waiting for the target thread to complete or to emit an event signal.
If info_requested is not NULL, then GET_RUNTIME_INFO is called.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition does not support this feature.
Syntax
DBMS_DEBUG.CONTINUE (
run_info IN OUT runtime_info,
breakflags IN BINARY_INTEGER,
info_requested IN BINARY_INTEGER := NULL)
RETURN BINARY_INTEGER;
Parameters
| Parameter | Description |
|---|---|
| run_info | Information about the program status. |
| breakflags | Mask of interested events. Only break_next_line, break_any_call, break_any_return, and abort_execute are supported. For more information, see Breakflags. |
| info_requested | Information to be returned in run_info when the program stops. For more information, see Information Flags. |
Return values
| Return value | Description |
|---|---|
| success | The operation succeeded. |
| error_timeout | The timeout period before the program starts running. |
| error_communication | Other communication errors. |
