DROP SHADOW ALGORITHM

Description

The DROP SHADOW ALGORITHM syntax is used to drop shadow algorithm for specified database

Syntax

  1. DropShadowAlgorithm ::=
  2. 'DROP' 'SHADOW' 'ALGORITHM' shadowAlgorithmName(',' shadowAlgorithmName)* ('FROM' databaseName)?
  3. shadowAlgorithmName ::=
  4. identifier
  5. databaseName ::=
  6. identifier

Supplement

  • When databaseName is not specified, the default is the currently used DATABASE. If DATABASE is not used, No database selected will be prompted.

Example

  • Drop mutiple shadow algorithm for specified database
  1. DROP SHADOW ALGORITHM shadow_rule_t_order_simple_hint_0, shadow_rule_t_order_item_simple_hint_0 FROM test1;
  • Drop single shadow algorithm for current database
  1. DROP SHADOW ALGORITHM shadow_rule_t_order_simple_hint_0;

Reserved word

DROP, SHODOW, ALGORITHM, FROM