You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
490 B
13 lines
490 B
create table performance_schema.users
|
|
(
|
|
USER char(32) collate utf8mb4_bin null,
|
|
CURRENT_CONNECTIONS bigint not null,
|
|
TOTAL_CONNECTIONS bigint not null,
|
|
MAX_SESSION_CONTROLLED_MEMORY bigint unsigned not null,
|
|
MAX_SESSION_TOTAL_MEMORY bigint unsigned not null,
|
|
constraint USER
|
|
unique (USER) using hash
|
|
)
|
|
engine = PERFORMANCE_SCHEMA;
|
|
|