From a68aaa8214c2c6e38bc6d10d276d6fa7a12d294f Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Mon, 10 Aug 2026 09:49:27 +0900 Subject: [PATCH] information-schema: fix table name in USER_ATTRIBUTES doc The opening sentence of the USER_ATTRIBUTES page referred to itself as the USER_PRIVILEGES table, a copy-paste error -- USER_PRIVILEGES is a different table entirely (GRANTEE/TABLE_CATALOG/PRIVILEGE_TYPE/ IS_GRANTABLE columns), unrelated to user comments/attributes (USER/HOST/ATTRIBUTE columns, as shown in this same page's own DESC output and confirmed against a live TiDB v8.5.7 instance). --- information-schema/information-schema-user-attributes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/information-schema/information-schema-user-attributes.md b/information-schema/information-schema-user-attributes.md index c2d31494a3819..9cc1b06662dca 100644 --- a/information-schema/information-schema-user-attributes.md +++ b/information-schema/information-schema-user-attributes.md @@ -5,7 +5,7 @@ summary: Learn the `USER_ATTRIBUTES` INFORMATION_SCHEMA table. # USER_ATTRIBUTES -The `USER_PRIVILEGES` table provides information about user comments and user attributes. This information comes from the `mysql.user` system table. +The `USER_ATTRIBUTES` table provides information about user comments and user attributes. This information comes from the `mysql.user` system table. ```sql USE information_schema;