CREATE DEFAULT SHADOW ALGORITHM
Description
The CREATE DEFAULT SHADOW ALGORITHM
syntax is used to create a default shadow algorithm.
Syntax
Grammar Railroad diagram
CreateDefaultShadowAlgorithm ::=
'CREATE' 'DEFAULT' 'SHADOW' 'ALGORITHM' ifNotExists? shadowAlgorithm
ifNotExists ::=
'IF' 'NOT' 'EXISTS'
shadowAlgorithm ::=
'TYPE' '(' 'NAME' '=' algorithmType ',' propertiesDefiinition ')'
algorithmType ::=
string
propertiesDefinition ::=
'PROPERTIES' '(' key '=' value (',' key '=' value)* ')'
key ::=
string
value ::=
literal
Supplement
algorithmType
currently supportsVALUE_MATCH
,REGEX_MATCH
andSQL_HINT
;ifNotExists
clause is used for avoidDuplicate default shadow algorithm
error.
Example
- Create default shadow algorithm
CREATE DEFAULT SHADOW ALGORITHM TYPE(NAME="SQL_HINT");
- Create default shadow algorithm with
ifNotExist
clause
CREATE DEFAULT SHADOW ALGORITHM IF NOT EXISTS TYPE(NAME="SQL_HINT");
Reserved word
CREATE
, DEFAULT
, SHADOW
, ALGORITHM
, TYPE
, NAME
, PROPERTIES
Related links
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .