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.
YZWL/IDEA/performance_schema/user_variables_by_thread.sql

10 lines
280 B

create table performance_schema.user_variables_by_thread
(
THREAD_ID bigint unsigned not null,
VARIABLE_NAME varchar(64) not null,
VARIABLE_VALUE longblob null,
primary key (THREAD_ID, VARIABLE_NAME) using hash
)
engine = PERFORMANCE_SCHEMA;