diff options
Diffstat (limited to 'storage/perfschema/table_setup_actors.cc')
-rw-r--r-- | storage/perfschema/table_setup_actors.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/perfschema/table_setup_actors.cc b/storage/perfschema/table_setup_actors.cc index dae9c80e6eb..e17bf3121da 100644 --- a/storage/perfschema/table_setup_actors.cc +++ b/storage/perfschema/table_setup_actors.cc @@ -50,9 +50,9 @@ table_setup_actors::m_share= sizeof(PFS_simple_index), &m_table_lock, { C_STRING_WITH_LEN("CREATE TABLE setup_actors(" - "HOST CHAR(60) collate utf8_bin default '%' not null," + "HOST CHAR(" HOSTNAME_LENGTH_STR ") collate utf8_bin default '%' not null," "USER CHAR(" USERNAME_CHAR_LENGTH_STR ") collate utf8_bin default '%' not null," - "ROLE CHAR(16) collate utf8_bin default '%' not null," + "ROLE CHAR(" USERNAME_CHAR_LENGTH_STR ") collate utf8_bin default '%' not null," "ENABLED ENUM('YES', 'NO') not null default 'YES'," "HISTORY ENUM('YES', 'NO') not null default 'YES')") }, false /* perpetual */ |