SHOW MASK ALGORITHM PLUGINS

Description

The SHOW MASK ALGORITHM PLUGINS syntax is used to query all the implementations of the interface org.apache.shardingsphere.mask.spi.MaskAlgorithm.

Syntax

Grammar Railroad diagram

  1. showMaskAlgorithmPlugins ::=
  2. 'SHOW' 'MASK' 'ALGORITHM' 'PLUGINS'

Return Value Description

ColumnsDescription
typetype
type_aliasestype aliases
descriptiondescription

Example

  • Query all the implementations for org.apache.shardingsphere.mask.spi.MaskAlgorithm interface
  1. SHOW MASK ALGORITHM PLUGINS
  1. SHOW MASK ALGORITHM PLUGINS;
  2. +------------------------------+--------------+-------------+
  3. | type | type_aliases | description |
  4. +------------------------------+--------------+-------------+
  5. | MD5 | | |
  6. | KEEP_FIRST_N_LAST_M | | |
  7. | KEEP_FROM_X_TO_Y | | |
  8. | MASK_AFTER_SPECIAL_CHARS | | |
  9. | MASK_BEFORE_SPECIAL_CHARS | | |
  10. | MASK_FIRST_N_LAST_M | | |
  11. | MASK_FROM_X_TO_Y | | |
  12. | GENERIC_TABLE_RANDOM_REPLACE | | |
  13. +------------------------------+--------------+-------------+
  14. 8 rows in set (0.13 sec)

Reserved word

SHOW, MASK, ALGORITHM, PLUGINS