From 8b5ac4a6cf98f599e90147c35853197f58073804 Mon Sep 17 00:00:00 2001 From: Ti Chi Robot Date: Wed, 8 Jan 2025 16:33:07 +0800 Subject: [PATCH] fix: correct CHAR and BINARY maximum length from 256 to 255 (#19493) (#19504) --- tidb-limitations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tidb-limitations.md b/tidb-limitations.md index a7b092244bf6..928efc658834 100644 --- a/tidb-limitations.md +++ b/tidb-limitations.md @@ -60,8 +60,8 @@ summary: TiDB 中的使用限制包括标识符长度限制、数据库、表、 | 类型 | 最大限制 | |:----------|:----------| -| CHAR | 256 字符 | -| BINARY | 256 字节 | +| CHAR | 255 字符 | +| BINARY | 255 字节 | | VARBINARY | 65535 字节 | | VARCHAR | 16383 字符 | | TEXT | 默认为 6291456 字节(即 6 MiB),可调至 125829120 字节(即 120 MiB) |