SHOW SHARDING ALGORITHM PLUGINS

Description

The SHOW SHARDING ALGORITHM PLUGINS syntax is used to query all the plugins of the interface org.apache.shardingsphere.sharding.spi.ShardingAlgorithm.

Syntax

Grammar Railroad diagram

  1. showShardingAlgorithmPlugins ::=
  2. 'SHOW' 'SHARDING' 'ALGORITHM' 'PLUGINS'

Return Value Description

ColumnsDescription
typetype
type_aliasestype aliases
descriptiondescription

Example

  • Query all the plugins for org.apache.shardingsphere.sharding.spi.ShardingAlgorithm interface
  1. SHOW SHARDING ALGORITHM PLUGINS
  1. SHOW SHARDING ALGORITHM PLUGINS;
  2. +----------------+--------------+-------------+
  3. | type | type_aliases | description |
  4. +----------------+--------------+-------------+
  5. | MOD | | |
  6. | HASH_MOD | | |
  7. | VOLUME_RANGE | | |
  8. | BOUNDARY_RANGE | | |
  9. | AUTO_INTERVAL | | |
  10. | INTERVAL | | |
  11. | CLASS_BASED | | |
  12. | INLINE | | |
  13. | COMPLEX_INLINE | | |
  14. | HINT_INLINE | | |
  15. +----------------+--------------+-------------+
  16. 10 rows in set (0.27 sec)

Reserved word

SHOW, SHARDING, ALGORITHM, PLUGINS