The DROP SHADOW ALGORITHM syntax is used to drop shadow algorithm for specified database
DropShadowAlgorithm ::=
'DROP' 'SHADOW' 'ALGORITHM' ifExists? shadowAlgorithmName (',' shadowAlgorithmName)* ('FROM' databaseName)?
ifExists ::=
'IF' 'EXISTS'
shadowAlgorithmName ::=
identifier
databaseName ::=
identifier
ifExists clause is used for avoid shadow algorithm not exists error.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 clauseDROP SHADOW ALGORITHM IF EXISTS shadow_rule_t_order_sql_hint_0;
DROP, SHODOW, ALGORITHM, FROM
