Skip to content

Commit

Permalink
This is an automated cherry-pick of pingcap#14291
Browse files Browse the repository at this point in the history
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
  • Loading branch information
ran-huang authored and ti-chi-bot committed Jun 21, 2023
1 parent 9b03484 commit a9a8460
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
16 changes: 16 additions & 0 deletions data-type-string.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ TINYTEXT [CHARACTER SET charset_name] [COLLATE collation_name]

### `MEDIUMTEXT` 类型

<<<<<<< HEAD
类似于 [`TEXT`](#text-类型),区别在于最大列长度为 16,777,215。
=======
类似于 [`TEXT`](#text-类型),区别在于最大列长度为 16,777,215。但由于 [`txn-entry-size-limit`](/tidb-configuration-file.md#txn-entry-size-limit-从-v50-版本开始引入) 的限制,TiDB 中默认单行存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。
>>>>>>> b32601b1bc (*: remove the limit on single column data size (#14291))
{{< copyable "sql" >}}

Expand All @@ -70,7 +74,11 @@ MEDIUMTEXT [CHARACTER SET charset_name] [COLLATE collation_name]

### `LONGTEXT` 类型

<<<<<<< HEAD
类似于 [`TEXT`](#text-类型),区别在于最大列长度为 4,294,967,295。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中单列存储最大不超过 6 MB。
=======
类似于 [`TEXT`](#text-类型),区别在于最大列长度为 4,294,967,295。但由于 [`txn-entry-size-limit`](/tidb-configuration-file.md#txn-entry-size-limit-从-v50-版本开始引入) 的限制,TiDB 中默认单行存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。
>>>>>>> b32601b1bc (*: remove the limit on single column data size (#14291))
{{< copyable "sql" >}}

Expand Down Expand Up @@ -120,7 +128,11 @@ TINYBLOB

### `MEDIUMBLOB` 类型

<<<<<<< HEAD
类似于 [`BLOB`](#blob-类型),区别在于最大列长度为 16777215。
=======
类似于 [`BLOB`](#blob-类型),区别在于最大列长度为 16,777,215。但由于 [`txn-entry-size-limit`](/tidb-configuration-file.md#txn-entry-size-limit-从-v50-版本开始引入) 的限制,TiDB 中默认单行存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。
>>>>>>> b32601b1bc (*: remove the limit on single column data size (#14291))
{{< copyable "sql" >}}

Expand All @@ -130,7 +142,11 @@ MEDIUMBLOB

### `LONGBLOB` 类型

<<<<<<< HEAD
类似于 [`BLOB`](#blob-类型),区别在于最大列长度为 4,294,967,295。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中单列存储最大不超过 6 MB。
=======
类似于 [`BLOB`](#blob-类型),区别在于最大列长度为 4,294,967,295。但由于 [`txn-entry-size-limit`](/tidb-configuration-file.md#txn-entry-size-limit-从-v50-版本开始引入) 的限制,TiDB 中默认单行存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。
>>>>>>> b32601b1bc (*: remove the limit on single column data size (#14291))
{{< copyable "sql" >}}

Expand Down
4 changes: 4 additions & 0 deletions tidb-limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,17 @@ title: TiDB 使用限制
|:----------|:----------|
| Size | 默认为 6MB,可通过 [`txn-entry-size-limit`](/tidb-configuration-file.md#txn-entry-size-limit-从-v50-版本开始引入) 配置项调整 |

<<<<<<< HEAD
## 单列的限制

| 类型 | 最大限制 |
|:----------|:----------|
| Size | 6MB |

## 字符串类型限制
=======
## 数据类型限制
>>>>>>> b32601b1bc (*: remove the limit on single column data size (#14291))
| 类型 | 最大限制 |
|:----------|:----------|
Expand Down

0 comments on commit a9a8460

Please sign in to comment.