The SHOW SQL_PARSER RULE syntax is used to query sql parser rule configuration.
ShowSqlParserRule ::=
'SHOW' 'SQL_PARSER' 'RULE'
| Column | Description |
|---|---|
| parse_tree_cache | parse tree cache configuration |
| sql_statement_cache | SQL statement cache configuration |
SHOW SQL_PARSER RULE;
mysql> SHOW SQL_PARSER RULE;
+-----------------------------------------+-------------------------------------------+
| parse_tree_cache | sql_statement_cache |
+-----------------------------------------+-------------------------------------------+
| initialCapacity: 128, maximumSize: 1024 | initialCapacity: 2000, maximumSize: 65535 |
+-----------------------------------------+-------------------------------------------+
1 row in set (0.05 sec)
SHOW, SQL_PARSER, RULE
