Bug #99103 | all_vars.test is getting wasted | ||
---|---|---|---|
Submitted: | 30 Mar 2020 4:32 | Modified: | 30 Mar 2020 6:40 |
Reporter: | Venkatesh Duggirala | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: Tests | Severity: | S7 (Test Cases) |
Version: | 8.0.19, 8.0.11, 5.7.29 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[30 Mar 2020 4:32]
Venkatesh Duggirala
[30 Mar 2020 6:40]
MySQL Verification Team
Dear Venkat, Thank you for the bug report and feedback. regards, Umesh
[30 Mar 2020 6:45]
MySQL Verification Team
- Lowest version checked 8.0.11, .result file has more or less same contents
[30 Mar 2020 6:46]
MySQL Verification Team
-- 5.7.29 - looks like issue here as well cat ./suite/sys_vars/r/all_vars.result create table t1 (test_name text); create table t2 (variable_name text); load data infile "MYSQLTEST_VARDIR/tmp/sys_vars.all_vars.txt" into table t1; insert into t2 select variable_name from information_schema.global_variables; insert into t2 select variable_name from information_schema.session_variables; update t2 set variable_name= replace(variable_name, "PERFORMANCE_SCHEMA_", "PFS_"); update t2 set variable_name= replace(variable_name, "_HISTORY_LONG_", "_HL_"); update t2 set variable_name= replace(variable_name, "_HISTORY_", "_H_"); update t2 set variable_name= replace(variable_name, "_THROTTLE_QUERIES_NOT_USING_INDEXES", "_THROTTLE_QNI"); 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: DISABLED_STORAGE_ENGINES DISABLED_STORAGE_ENGINES KEYRING_OPERATIONS KEYRING_OPERATIONS TLS_VERSION TLS_VERSION drop table t1; drop table t2;