summaryrefslogtreecommitdiff
path: root/storage/perfschema/table_accounts.cc
diff options
context:
space:
mode:
authorVicențiu Ciorbaru <cvicentiu@gmail.com>2021-09-10 17:16:18 +0300
committerVicențiu Ciorbaru <cvicentiu@gmail.com>2021-09-10 17:16:18 +0300
commit7c33ecb6651fb80f46bf9f3d8fee2e2f2b70995d (patch)
tree7e44ff7393b97f739737c7d1427f042d72fdf46e /storage/perfschema/table_accounts.cc
parent6e3bd663d0fc669ffa6ab4c5f5aa57a1244ac555 (diff)
parent4f85eadf71775979f97744abc536df6b67cf3e5d (diff)
downloadmariadb-git-7c33ecb6651fb80f46bf9f3d8fee2e2f2b70995d.tar.gz
Merge remote-tracking branch 'upstream/10.4' into 10.5
Diffstat (limited to 'storage/perfschema/table_accounts.cc')
-rw-r--r--storage/perfschema/table_accounts.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/perfschema/table_accounts.cc b/storage/perfschema/table_accounts.cc
index 310c81f26b3..781f408adcb 100644
--- a/storage/perfschema/table_accounts.cc
+++ b/storage/perfschema/table_accounts.cc
@@ -45,10 +45,10 @@ table_accounts::m_share=
sizeof(PFS_simple_index), /* ref length */
&m_table_lock,
{ C_STRING_WITH_LEN("CREATE TABLE accounts("
- "USER CHAR(" USERNAME_CHAR_LENGTH_STR ") collate utf8_bin default null,"
- "HOST CHAR(" HOSTNAME_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.',"
+ "HOST CHAR(" HOSTNAME_LENGTH_STR ") collate utf8_bin default null comment 'The connection client''s host name, or NULL if an internal thread.',"
+ "CURRENT_CONNECTIONS bigint not null comment 'Current connections for the account.',"
+ "TOTAL_CONNECTIONS bigint not null comment 'Total connections for the account.')") },
false /* perpetual */
};