This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new ac855e75f1 [fix](doc) fix from_unixtime error range #23176 ac855e75f1 is described below commit ac855e75f13adf035c7127cd3e36bcbb2dd8c197 Author: Mryange <59914473+mrya...@users.noreply.github.com> AuthorDate: Sat Aug 19 12:17:13 2023 +0800 [fix](doc) fix from_unixtime error range #23176 --- .../sql-manual/sql-functions/date-time-functions/from-unixtime.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh-CN/docs/sql-manual/sql-functions/date-time-functions/from-unixtime.md b/docs/zh-CN/docs/sql-manual/sql-functions/date-time-functions/from-unixtime.md index 81eb202d63..3c90b0d385 100644 --- a/docs/zh-CN/docs/sql-manual/sql-functions/date-time-functions/from-unixtime.md +++ b/docs/zh-CN/docs/sql-manual/sql-functions/date-time-functions/from-unixtime.md @@ -39,9 +39,9 @@ under the License. 其余 `string_format` 格式是非法的,返回NULL -如果给定的时间戳小于 0 或大于 253402271999,则返回 NULL。即时间戳范围是: +如果给定的时间戳小于 0 或大于 2147483647,则返回 NULL。即时间戳范围是: -1970-01-01 00:00:00 ~ 9999-12-31 23:59:59 +1970-01-01 00:00:00 ~ 2038-01-19 03:14:07 ### example --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org