From cfe698456f70be0d9c4b32bb6827c4b05334b67a Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Fri, 3 Jul 2026 14:35:35 +0900 Subject: [PATCH] sql: align FLUSH PRIVILEGES description with MySQL docs --- sql-statements/sql-statement-flush-privileges.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql-statements/sql-statement-flush-privileges.md b/sql-statements/sql-statement-flush-privileges.md index 13c3bc2dcee01..0b7429c8f9c66 100644 --- a/sql-statements/sql-statement-flush-privileges.md +++ b/sql-statements/sql-statement-flush-privileges.md @@ -5,7 +5,7 @@ summary: An overview of the usage of FLUSH PRIVILEGES for the TiDB database. # FLUSH PRIVILEGES -The statement `FLUSH PRIVILEGES` instructs TiDB to reload the in-memory copy of privileges from the privilege tables. You must execute this statement after manually editing tables such as `mysql.user`. However, executing this statement is not necessary after using privilege statements like `GRANT` or `REVOKE`. To execute this statement, the `RELOAD` privilege is required. +The statement `FLUSH PRIVILEGES` instructs TiDB to reload the grant tables into memory. You must execute this statement after manually editing tables such as `mysql.user`. However, executing this statement is not necessary after using privilege statements like `GRANT` or `REVOKE`. To execute this statement, the `RELOAD` privilege is required. ## Synopsis