不明白你在说什么,什么叫回滚断点,是不是跳到某处?
如果这样,可以使用:GOTO 语句:
--设定标号
<<step>>
...
...
if ... then
 goto step; --跳转至step处
end if;