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

Remove Experimental #9630

Merged
merged 1 commit into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
remove Experimental
  • Loading branch information
Oreoxmt committed May 30, 2022
commit 12121c8ad8150c33393eb86999d6734a54638930
16 changes: 8 additions & 8 deletions basic-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@ aliases: ['/docs-cn/dev/basic-features/']

## 分区

| 分区 | 6.0 | 5.4 | 5.3 | 5.2 | 5.1 | 5.0 | 4.0 |
| ---------------------------------------------- | :------: | :------: | :------: | :------: | :------: | :------: | :-: |
| [Range 分区](/partitioned-table.md) | Y | Y | Y | Y | Y | Y | Y |
| [Hash 分区](/partitioned-table.md) | Y | Y | Y | Y | Y | Y | Y |
| [List 分区](/partitioned-table.md) | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | N |
| [List COLUMNS 分区](/partitioned-table.md) | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | N |
| [`EXCHANGE PARTITION`](/partitioned-table.md) | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | N |
| [动态裁剪](/partitioned-table.md#动态裁剪模式) | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | N | N |
| 分区 | 6.1 | 6.0| 5.4 | 5.3 | 5.2 | 5.1 | 5.0 | 4.0 |
| ------------------------------------------------------------ | :--: | :--: | ------------ | :----------: | :----------: | :----------: | :----------: | :-----: |
| [Range 分区](/partitioned-table.md) | Y | Y | Y | Y | Y | Y | Y | Y |
| [Hash 分区](/partitioned-table.md) | Y | Y | Y | Y | Y | Y | Y | Y |
| [List 分区](/partitioned-table.md) | Y | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | N |
| [List COLUMNS 分区](/partitioned-table.md) | Y | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | N |
| [`EXCHANGE PARTITION`](/partitioned-table.md) | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | N |
| [动态裁剪](/partitioned-table.md#动态裁剪模式) | Y | 实验特性 | 实验特性 | 实验特性 | 实验特性 | 实验特性 | N | N |

## 统计信息

Expand Down
3 changes: 0 additions & 3 deletions experimental-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ aliases: ['/docs-cn/dev/experimental-features-4.0/','/zh/tidb/dev/experimental-f

## SQL 功能

+ List 分区表 (List Partition)。(v5.0 实验特性)
+ List Column 分区表 (List Column Partition)。(v5.0 实验特性)
+ [分区表动态裁剪模式](/partitioned-table.md#动态裁剪模式)。(v5.1 实验特性)
+ 表达式索引 (Expression Index) 功能。表达式索引也叫函数索引,在创建索引时索引的字段不一定是一个具体的列,也可以是由一个或者多个列计算出来的表达式。对于快速访问那些基于计算结果的表非常有用。详情参阅:[表达式索引](/sql-statements/sql-statement-create-index.md)。(v4.0 实验特性)
+ [生成列](/generated-columns.md#生成列)。(v2.1 实验特性)
+ [自定义变量](/user-defined-variables.md#用户自定义变量)。(v2.1 实验特性)
Expand Down
4 changes: 0 additions & 4 deletions partitioned-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,6 @@ Range 分区在下列条件之一或者多个都满足时,尤其有效:

### List 分区

> **警告:**
>
> 该功能目前为实验特性,不建议在生产环境中使用。

在创建 List 分区表之前,需要先将 session 变量 `tidb_enable_list_partition` 的值设置为 `ON`。

{{< copyable "sql" >}}
Expand Down
4 changes: 0 additions & 4 deletions placement-rules-in-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,6 @@ CREATE TABLE t1 (a INT) PLACEMENT POLICY=eastandwest;

### 为分区表指定放置规则

> **注意:**
>
> 以下示例使用的 List 分区目前为 TiDB 实验特性。在表的分区功能中,要求主键里包含所有分区函数中使用的列。

除了给表绑定放置策略之外,你还可以给表分区绑定放置策略。示例如下:

```sql
Expand Down
4 changes: 0 additions & 4 deletions system-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -764,10 +764,6 @@ MPP 是 TiFlash 引擎提供的分布式计算框架,允许节点之间的数

### `tidb_enable_list_partition` <span class="version-mark">从 v5.0 版本开始引入</span>

> **警告:**
>
> 目前 List 分区和 List COLUMNS 分区类型为实验特性,不建议在生产环境中使用。

- 作用域:SESSION | GLOBAL
- 是否持久化到集群:是
- 默认值:`OFF`
Expand Down