Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document missing sysvars #6485

Merged
merged 16 commits into from
Sep 30, 2021
Merged
Prev Previous commit
Next Next commit
A few more
  • Loading branch information
dveeden committed Sep 15, 2021
commit aaf6871237fd127eef1be42baa1bdd76fd5ad30c
32 changes: 32 additions & 0 deletions system-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,20 @@ mysql> SELECT * FROM t1;
- Default value: `Apache License 2.0`
- This variable indicates the license of your TiDB server installation.

### max_allowed_packet

- Scope: GLOBAL | SESSION
- Default value: `67108864`
- Range: `[1024, 1073741824]`
- Maximum size of a packet for the MySQL protocol
dveeden marked this conversation as resolved.
Show resolved Hide resolved

### max_connections

- Scope: GLOBAL
- Default value: `151
- Range: `[1, 100000]`
- MySQL Compatibility variable. Not used in TiDB.
dveeden marked this conversation as resolved.
Show resolved Hide resolved

### max_execution_time

- Scope: SESSION | GLOBAL
Expand Down Expand Up @@ -293,6 +307,24 @@ mysql> SELECT * FROM t1;
- Range: `[0, 18446744073709551615]`
- The maximum number of rows returned by the `SELECT` statements.

### ssl_ca

- Scope: NONE
- Default value: ""
- The location of the certificate authority file if specified on startup.
dveeden marked this conversation as resolved.
Show resolved Hide resolved

### ssl_cert

- Scope: NONE
- Default value: ""
- The location of the certificate file that is used for SSL/TLS connections if specified on startup.
dveeden marked this conversation as resolved.
Show resolved Hide resolved

### ssl_key

- Scope: NONE
- Default value: ""
- The location of the private key file that is used for SSL/TLS connections if specified on startup.
dveeden marked this conversation as resolved.
Show resolved Hide resolved

### system_time_zone

- Scope: NONE
Expand Down