From ccc76760eb0ac3a6acfb2548bcc5ebb4e9adfec2 Mon Sep 17 00:00:00 2001 From: Ran Date: Fri, 30 Jun 2023 15:16:26 +0800 Subject: [PATCH] Update sql-statements/sql-statement-flush-privileges.md --- 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 b120364dd1e1f..95a98d1b0dcfb 100644 --- a/sql-statements/sql-statement-flush-privileges.md +++ b/sql-statements/sql-statement-flush-privileges.md @@ -6,7 +6,7 @@ aliases: ['/docs/dev/sql-statements/sql-statement-flush-privileges/','/docs/dev/ # FLUSH PRIVILEGES -The statement `FLUSH PRIVILEGES` instructs TiDB to reload the in-memory copy of privileges from the [privilege tables](/privilege-management.md#privilege-table). 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 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. ## Synopsis