polardbxengine/mysql-test/suite/xengine_perfschema/t/idx_uvar_by_thread.test

27 lines
649 B
Plaintext

# Tests for PERFORMANCE_SCHEMA
#setup
let $select_column = VARIABLE_VALUE;
let $table = performance_schema.user_variables_by_thread;
select connection_id() into @conid;
select thread_id from performance_schema.threads
where PROCESSLIST_ID = @conid
into @tid;
set @a=1;
set @b=2;
set @c=3;
###########################################################################
# Test index on THREAD_ID, VARIABLE_NAME
###########################################################################
let $column_count = 2;
let $col1 = THREAD_ID;
let $col2 = VARIABLE_NAME;
let $col1_act = @tid;
let $col2_act = "a";
--source ../include/idx_explain_test.inc