The DISABLE_BREAKPOINT function makes an existing breakpoint inactive but leaves it in place.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition provides only the MySQL mode.
Syntax
DBMS_DEBUG.DISABLE_BREAKPOINT (
breakpoint IN BINARY_INTEGER)
RETURN BINARY_INTEGER;
Parameters
| Parameter | Description |
|---|---|
| breakpoint | The breakpoint number set by a previous call to SET_BREAKPOINT. |
Return values
| Return value | Description |
|---|---|
| success | The operation was successful. |
| error_no_such_breakpt | The specified breakpoint does not exist. |
| error_idle_breakpt | Cannot disable an unused breakpoint. |