summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/r/dml_users.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/perfschema/r/dml_users.result')
-rw-r--r--mysql-test/suite/perfschema/r/dml_users.result10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/r/dml_users.result b/mysql-test/suite/perfschema/r/dml_users.result
index fa2d29731da..b38cf034bc0 100644
--- a/mysql-test/suite/perfschema/r/dml_users.result
+++ b/mysql-test/suite/perfschema/r/dml_users.result
@@ -23,3 +23,13 @@ UNLOCK TABLES;
LOCK TABLES performance_schema.users WRITE;
ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'users'
UNLOCK TABLES;
+#
+# MDEV-25325 column_comment for performance_schema tables
+#
+select column_name, column_comment
+from information_schema.columns
+where table_schema='performance_schema' and table_name='users';
+column_name column_comment
+USER The connection's client user name for the connection, or NULL if an internal thread.
+CURRENT_CONNECTIONS Current connections for the user.
+TOTAL_CONNECTIONS Total connections for the user.