morningman commented on code in PR #13051: URL: https://github.com/apache/doris/pull/13051#discussion_r990924323
########## docs/zh-CN/docs/advanced/variables.md: ########## @@ -520,4 +523,27 @@ SELECT /*+ SET_VAR(query_timeout = 1, enable_partition_cache=true) */ sleep(3); 用于调试目的。在向量化执行引擎中,当发现读取Aggregate Key模型或者Unique Key模型的数据结果有问题的时候,把此变量的值设置为`true`,将会把Aggregate Key模型或者Unique Key模型的数据当成Duplicate Key模型读取。 * `skip_delete_predicate` - 用于调试目的。在向量化执行引擎中,当发现读取表的数据结果有误的时候,把此变量的值设置为`true`,将会把被删除的数据当成正常数据读取。 \ No newline at end of file + + 用于调试目的。在向量化执行引擎中,当发现读取表的数据结果有误的时候,把此变量的值设置为`true`,将会把被删除的数据当成正常数据读取。 + +* `default_password_lifetime` + + 默认的密码过期时间。默认值为 0,即表示不过期。单位为天。该参数只有当用户的密码过期属性为 DEFAULT 值时,才启用。如: + + ``` + CREATE USER user1 IDENTIFIED BY "12345" PASSWORD_EXPIRE DEFAULT; + ALTER USER user1 PASSWORD_EXPIRE DEFAULT; + ``` +* `password_history` Review Comment: This is same as mysql https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_password_history -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org