summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/all_vars.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/sys_vars/t/all_vars.test')
-rw-r--r--mysql-test/suite/sys_vars/t/all_vars.test6
1 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/suite/sys_vars/t/all_vars.test b/mysql-test/suite/sys_vars/t/all_vars.test
index d432aff7cc6..054a74277da 100644
--- a/mysql-test/suite/sys_vars/t/all_vars.test
+++ b/mysql-test/suite/sys_vars/t/all_vars.test
@@ -73,10 +73,12 @@ delete from t2 where variable_name='innodb_change_buffering_debug';
update t2 set variable_name= replace(variable_name, "PERFORMANCE_SCHEMA_", "PFS_");
-select variable_name as `There should be *no* long test name listed below:` from t2
+--sorted_result
+select distinct variable_name as `There should be *no* long test name listed below:` from t2
where length(variable_name) > 50;
-select variable_name as `There should be *no* variables listed below:` from t2
+--sorted_result
+select distinct 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;
drop table t1;