The SHOW DIST VARIABLE
syntax is used to query PROXY
system variables configuration.
ShowDistVariable ::=
'SHOW' 'DIST' ('VARIABLES' ('LIKE' likePattern)?| 'VARIABLE' 'WHERE' 'NAME' '=' variableName)
likePattern ::=
string
variableName ::=
identifier
Columns | Description |
---|---|
variable_name | system variable name |
variable_value | system variable value |
variableName
is not specified, the default is query all PROXY
variables configuration.PROXY
SHOW DIST VARIABLES;
mysql> SHOW DIST VARIABLES;
+---------------------------------------+-----------------+
| variable_name | variable_value |
+---------------------------------------+-----------------+
| agent_plugins_enabled | true |
| cached_connections | 0 |
| cdc_server_port | 33071 |
| check_table_metadata_enabled | false |
| kernel_executor_size | 0 |
| max_connections_size_per_query | 1 |
| proxy_backend_query_fetch_size | -1 |
| proxy_default_port | 3307 |
| proxy_frontend_database_protocol_type | |
| proxy_frontend_executor_size | 0 |
| proxy_frontend_flush_threshold | 128 |
| proxy_frontend_max_connections | 0 |
| proxy_frontend_ssl_cipher | |
| proxy_frontend_ssl_enabled | false |
| proxy_frontend_ssl_version | TLSv1.2,TLSv1.3 |
| proxy_meta_data_collector_enabled | true |
| proxy_netty_backlog | 1024 |
| sql_federation_type | NONE |
| sql_show | false |
| sql_simple | false |
| system_log_level | INFO |
+---------------------------------------+-----------------+
21 rows in set (0.01 sec)
PROXY
SHOW DIST VARIABLE WHERE NAME = sql_show;
mysql> SHOW DIST VARIABLE WHERE NAME = sql_show;
+---------------+----------------+
| variable_name | variable_value |
+---------------+----------------+
| sql_show | false |
+---------------+----------------+
1 row in set (0.00 sec)
SHOW
, DIST
, VARIABLE
, VARIABLES
, NAME