The DROP SHARDING AUDITOR syntax is used to drop sharding auditors from the current database.
DropShardingAuditor ::=
'DROP' 'SHARDING' 'AUDITOR' ifExists? auditorName (',' auditorName)*
ifExists ::=
'IF' 'EXISTS'
auditorName ::=
identifier
ifExists clause is used to avoid a Sharding auditor not exists error.DROP SHARDING AUDITOR sharding_key_required_auditor;
ifExists clauseDROP SHARDING AUDITOR IF EXISTS sharding_key_required_auditor, custom_auditor;
DROP, SHARDING, AUDITOR, IF, EXISTS
