summaryrefslogtreecommitdiff
path: root/storage/perfschema/table_users.cc
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-09-11 17:55:27 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2021-09-11 17:55:27 +0300
commit15139964d52539a8bb96d090fa1b5b26921eab3e (patch)
tree926d23e30e2c3aa09014a8005db95ad543694357 /storage/perfschema/table_users.cc
parent54f79a0f7fc8b1b30073391319f1b2c37b4cc015 (diff)
parent40b743f99e8ca5ac479e8c559f8316b606033582 (diff)
downloadmariadb-git-15139964d52539a8bb96d090fa1b5b26921eab3e.tar.gz
Merge 10.5 into 10.6
Diffstat (limited to 'storage/perfschema/table_users.cc')
-rw-r--r--storage/perfschema/table_users.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/perfschema/table_users.cc b/storage/perfschema/table_users.cc
index 734ff7a4e51..007b20c15e2 100644
--- a/storage/perfschema/table_users.cc
+++ b/storage/perfschema/table_users.cc
@@ -46,9 +46,9 @@ table_users::m_share=
sizeof(PFS_simple_index), /* ref length */
&m_table_lock,
{ C_STRING_WITH_LEN("CREATE TABLE users("
- "USER CHAR(" USERNAME_CHAR_LENGTH_STR ") collate utf8_bin default null,"
- "CURRENT_CONNECTIONS bigint not null,"
- "TOTAL_CONNECTIONS bigint not null)") },
+ "USER CHAR(" USERNAME_CHAR_LENGTH_STR ") collate utf8_bin default null comment 'The connection''s client user name for the connection, or NULL if an internal thread.',"
+ "CURRENT_CONNECTIONS bigint not null comment 'Current connections for the user.',"
+ "TOTAL_CONNECTIONS bigint not null comment 'Total connections for the user.')") },
false /* perpetual */
};