summaryrefslogtreecommitdiffstats
path: root/storage/rocksdb/mysql-test/rocksdb_sys_vars/r/all_vars.result
blob: 159d6a983c8c11ba4f7e4033899009d0b1c02a20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
create table t1 (test_name text) engine=MyISAM;
create table t2 (variable_name text) engine=MyISAM;
load data infile "MYSQLTEST_VARDIR/tmp/rocksdb_sys_vars.all_vars.txt" into table t1;
insert into t2 select variable_name from information_schema.global_variables where variable_name like "rocksdb_%";
insert into t2 select variable_name from information_schema.session_variables where variable_name like "rocksdb_%";
select variable_name as `There should be *no* long test name listed below:` from t2
where length(variable_name) > 50;
There should be *no* long test name listed below:
select variable_name as `There should be *no* variables listed below:` from t2
left join t1 on variable_name=test_name where test_name is null ORDER BY variable_name;
There should be *no* variables listed below:
drop table t1;
drop table t2;