dylanhz commented on code in PR #29154:
URL: https://github.com/apache/flink/pull/29154#discussion_r3986512675
##########
docs/data/sql_functions_zh.yml:
##########
@@ -280,8 +280,18 @@ arithmetic:
- sql: UUID()
table: uuid()
description: |
- 根据 RFC 4122 类型 4(伪随机生成)UUID,返回 UUID(通用唯一标识符)字符串。
+ 根据 RFC 9562 类型 4(伪随机生成)UUID,返回 UUID(通用唯一标识符)字符串。
例如“3d3c68f7-f608-473f-b60c-b0c44ad4cc4e”,UUID 是使用加密强的伪随机数生成器生成的。
+ - sql: UUID_V4()
+ table: uuidV4()
+ description: |
+ Returns a random RFC 9562 version 4 UUID value. The UUID is generated
using a
+ cryptographically strong pseudo random number generator.
Review Comment:
```suggestion
返回一个符合 RFC 9562 的版本 4 随机 UUID 值。该 UUID 使用密码学安全的伪随机数生成器生成。
```
##########
docs/data/sql_functions_zh.yml:
##########
@@ -280,8 +280,18 @@ arithmetic:
- sql: UUID()
table: uuid()
description: |
- 根据 RFC 4122 类型 4(伪随机生成)UUID,返回 UUID(通用唯一标识符)字符串。
+ 根据 RFC 9562 类型 4(伪随机生成)UUID,返回 UUID(通用唯一标识符)字符串。
例如“3d3c68f7-f608-473f-b60c-b0c44ad4cc4e”,UUID 是使用加密强的伪随机数生成器生成的。
+ - sql: UUID_V4()
+ table: uuidV4()
+ description: |
+ Returns a random RFC 9562 version 4 UUID value. The UUID is generated
using a
+ cryptographically strong pseudo random number generator.
+ - sql: UUID_V7()
+ table: uuidV7()
+ description: |
+ Returns a time-ordered RFC 9562 version 7 UUID value, generated from the
current
+ timestamp and a random component.
Review Comment:
```suggestion
返回一个符合 RFC 9562 的、按时间排序的版本 7 UUID 值,由当前时间戳和随机分量生成。
```
--
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]