HappenLee commented on code in PR #2897:
URL: https://github.com/apache/doris-website/pull/2897#discussion_r2367070958


##########
i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/data-type-overview.md:
##########
@@ -47,14 +47,16 @@
 
 ## 字符串类型
 
-字符串类型支持定长和不定长,总共有以下 3 种:
+字符串类型支持定长和不定长,总共有以下 4 种:
 
 1. [CHAR(M)](./string-type/CHAR):定长字符串,固定长度 M 字节,M 的范围是 [1, 255]。
 
 2. [VARCHAR(M)](./string-type/VARCHAR):不定长字符串,M 是最大长度,M 的范围是 [1, 65533]。
 
 3. [STRING](./string-type/STRING):不定长字符串,默认最长 1048576 字节(1MB),可调大到 2147483643 
字节(2GB),BE 配置 string_type_length_soft_limit_bytes。
 
+4. [VARBINARY](./string-type/VARBINARY):变长二进制字节序列,M 为最大长度(单位:字节)。与 VARCHAR 
类似,但按字节序存储与比较,不涉及字符集或排序规则,适合存储任意二进制数据(如文件片段、加密数据、压缩数据等)。自 4.0 
起支持,当前不支持建表和存储,可以结合Catalog 映射其他数据库的BINARY到DORIS中使用。

Review Comment:
   不应该是字符串类型,应该是一个单独的binary的类型



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to