DROP SHADOW ALGORITHM
描述
DROP SHADOW ALGORITHM
语法用于为指定逻辑库删除影子库压测算法。
语法定义
语法 铁路图
DropShadowAlgorithm ::=
'DROP' 'SHADOW' 'ALGORITHM' ifExists? shadowAlgorithmName (',' shadowAlgorithmName)* ('FROM' databaseName)?
ifExists ::=
'IF' 'EXISTS'
shadowAlgorithmName ::=
identifier
databaseName ::=
identifier
补充说明
- 未指定
databaseName
时,默认是当前使用的DATABASE
。 如果也未使用DATABASE
则会提示No database selected
; ifExists
子句用于避免shadow algorithm not exists
错误。
示例
- 为指定数据库删除多个影子库压测算法
DROP SHADOW ALGORITHM shadow_rule_t_order_sql_hint_0, shadow_rule_t_order_item_sql_hint_0 FROM shadow_db;
- 为当前数据库删除单个影子库压测算法
DROP SHADOW ALGORITHM shadow_rule_t_order_sql_hint_0;
- 使用
ifExists
子句删除影子库压测算法
DROP SHADOW ALGORITHM IF EXISTS shadow_rule_t_order_sql_hint_0;
保留字
DROP
、SHADOW
、ALGORITHM
、FROM
相关链接
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .