SHOW SQL_PARSER RULE
Description
The SHOW SQL_PARSER RULE
syntax is used to query sql parser rule configuration.
Syntax
Grammar Railroad diagram
ShowSqlParserRule ::=
'SHOW' 'SQL_PARSER' 'RULE'
Return Value Description
Column | Description |
---|---|
sql_comment_parse_enabled | SQL comment parse enabled status |
parse_tree_cache | parse tree cache configuration |
sql_statement_cache | SQL statement cache configuration |
Example
- Query sql parser rule configuration
SHOW SQL_PARSER RULE;
mysql> SHOW SQL_PARSER RULE;
+---------------------------+-----------------------------------------+-------------------------------------------+
| sql_comment_parse_enabled | parse_tree_cache | sql_statement_cache |
+---------------------------+-----------------------------------------+-------------------------------------------+
| false | initialCapacity: 128, maximumSize: 1024 | initialCapacity: 2000, maximumSize: 65535 |
+---------------------------+-----------------------------------------+-------------------------------------------+
1 row in set (0.05 sec)
Reserved word
SHOW
, SQL_PARSER
, RULE
Related links
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .