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.
|
create table performance_schema.status_by_host
|
|
(
|
|
HOST char(255) charset ascii null,
|
|
VARIABLE_NAME varchar(64) not null,
|
|
VARIABLE_VALUE varchar(1024) null,
|
|
constraint HOST
|
|
unique (HOST, VARIABLE_NAME) using hash
|
|
)
|
|
engine = PERFORMANCE_SCHEMA;
|
|
|