The DELETE_BREAKPOINT function is used to delete a breakpoint.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition does not support this feature.
Syntax
DBMS_DEBUG.DELETE_BREAKPOINT (
breakpoint IN BINARY_INTEGER)
RETURN BINARY_INTEGER;
Parameters
| Parameter | Description |
|---|---|
| breakpoint | The breakpoint number returned by SET_BREAKPOINT. |
Return value
| Parameter | Description |
|---|---|
| success | The operation is completed successfully. |
| error_no_such_breakpt | The breakpoint does not exist. |
| error_idle_breakpt | The breakpoint cannot be deleted because it is not in use. |
| error_stale_breakpt | The program unit was redefined after the breakpoint was set. |
