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

add the unsupported note to require_secure_transport #15034

Merged
merged 10 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions system-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,11 @@ mysql> SHOW GLOBAL VARIABLES LIKE 'max_prepared_stmt_count';

### require_secure_transport <span class="version-mark">New in v6.1.0</span>

> **Note:**
>
> This variable is not supported on [TiDB Dedicated](https://docs.pingcap.com/tidbcloud/select-cluster-tier#tidb-dedicated).
> If you open it, it may cause the SQL client to fail to connect to the TiDB Dedicated cluster.
lilyjazz marked this conversation as resolved.
Show resolved Hide resolved

- Scope: GLOBAL
- Persists to cluster: Yes
- Type: Boolean
Expand Down
3 changes: 3 additions & 0 deletions tidb-cloud/limited-sql-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ TiDB Cloud works with almost all workloads that TiDB supports, but there are som
| `max_allowed_packet` | No limitation | Read-only [^11] |
| `plugin_dir` | No limitation | Not supported [^8] |
| `plugin_load` | No limitation | Not supported [^8] |
| `require_secure_transport` | Not supported [^13] | Read-only [^11] |
| `skip_name_resolve` | No limitation | Read-only [^11] |
| `sql_log_bin` | No limitation | Read-only [^11] |
| `tidb_cdc_write_source` | No limitation | Read-only [^11] |
Expand Down Expand Up @@ -246,3 +247,5 @@ TiDB Cloud works with almost all workloads that TiDB supports, but there are som
[^11]: The variable is read-only on TiDB Serverless.

[^12]: Customizing cache size using [`AUTO_ID_CACHE`](/auto-increment.md#cache-size-control) is temporarily unavailable on TiDB Serverless.

[^13]: Not supported. Enabling it for TiDB Dedicated clusters will result in SQL client connection failures.
qiancai marked this conversation as resolved.
Show resolved Hide resolved
Loading