Move the docs folder

This commit is contained in:
LINxiansheng
2022-02-10 14:51:49 +08:00
committed by LINxiansheng
parent 7c6dcc6712
commit d42f317422
1160 changed files with 0 additions and 3 deletions

View File

@ -0,0 +1,50 @@
DROP RESTORE POINT
=======================================
描述
-----------------------
该语句用来删除还原点(Restore Point)。
**注意**
系统租户不支持删除还原点。
格式
-----------------------
```unknow
DROP RESTORE POINT restore_point;
```
参数解释
-------------------------
| 参数 | 描述 |
|---------------|----------|
| restore_point | 指定还原点名称。 |
示例
-----------------------
* 删除一个还原点 rp1。
```unknow
obclient> DROP RESTORE POINT rp1;
Query OK, 0 rows affected (0.01 sec)
```