SHOW SHARDING AUDITORS
syntax is used to query sharding auditors that are not used in specified database.
ShowUnusedShardingAuditors::=
'SHOW' 'SHARDING' 'AUDITOR'('FROM' databaseName)?
databaseName ::=
identifier
column | Description |
---|---|
name | Sharding auditor name |
type | Sharding auditor algorithm type |
props | Sharding auditor algorithm properties |
SHOW SHARDING AUDITORS FROM test1;
mysql> SHOW SHARDING AUDITORS FROM test1;
+-------------------------------+-------------------------+-------+
| name | type | props |
+-------------------------------+-------------------------+-------+
| sharding_key_required_auditor | dml_sharding_conditions | {} |
+-------------------------------+-------------------------+-------+
1 row in set (0.01 sec)
SHOW UNUSED SHARDING AUDITORS FROM test1;
mysql> SHOW UNUSED SHARDING AUDITORS FROM test1;
+-------------------------------+-------------------------+-------+
| name | type | props |
+-------------------------------+-------------------------+-------+
| sharding_key_required_auditor | dml_sharding_conditions | {} |
+-------------------------------+-------------------------+-------+
1 row in set (0.00 sec)
SHOW
, UNUSED
, SHARDING
, AUDITORS
, FROM