Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: shichun-0415 <89768198+shichun-0415@users.noreply.github.com>
  • Loading branch information
TomShawn and shichun-0415 authored Jan 5, 2023
1 parent 0f5f302 commit 420709e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions data-type-string.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ TINYTEXT [CHARACTER SET charset_name] [COLLATE collation_name]

### `MEDIUMTEXT` 类型

类似于 [`TEXT`](#text-类型),区别在于最大列长度为 16,777,215。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中单列存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。
类似于 [`TEXT`](#text-类型),区别在于最大列长度为 16,777,215。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中默认单列存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。

{{< copyable "sql" >}}

Expand All @@ -71,7 +71,7 @@ MEDIUMTEXT [CHARACTER SET charset_name] [COLLATE collation_name]

### `LONGTEXT` 类型

类似于 [`TEXT`](#text-类型),区别在于最大列长度为 4,294,967,295。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中单列存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。
类似于 [`TEXT`](#text-类型),区别在于最大列长度为 4,294,967,295。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中默认单列存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。

{{< copyable "sql" >}}

Expand Down Expand Up @@ -121,7 +121,7 @@ TINYBLOB

### `MEDIUMBLOB` 类型

类似于 [`BLOB`](#blob-类型),区别在于最大列长度为 16,777,215。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中单列存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。
类似于 [`BLOB`](#blob-类型),区别在于最大列长度为 16,777,215。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中默认单列存储最大不超过 6 MiB,可通过配置项将该限制调整至 120 MiB。

{{< copyable "sql" >}}

Expand All @@ -131,7 +131,7 @@ MEDIUMBLOB

### `LONGBLOB` 类型

类似于 [`BLOB`](#blob-类型),区别在于最大列长度为 4,294,967,295。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中单列存储最大不超过 6 MB,可通过配置项将该限制调整至 120 MiB。
类似于 [`BLOB`](#blob-类型),区别在于最大列长度为 4,294,967,295。但由于 [TiDB 单列的限制](/tidb-limitations.md#单列的限制),TiDB 中默认单列存储最大不超过 6 MB,可通过配置项将该限制调整至 120 MiB。

{{< copyable "sql" >}}

Expand Down

0 comments on commit 420709e

Please sign in to comment.