The DELETE_BREAKPOINT function deletes a breakpoint.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition provides only the MySQL mode.
Syntax
DBMS_DEBUG.DELETE_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 delete an unused breakpoint. |
| error_stale_breakpt | The program unit was redefined since the breakpoint was set. |