File: all_vars.test

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (89 lines) | stat: -rw-r--r-- 3,474 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
--source include/not_threadpool.inc

# 2010-01-28 OBN Added support to load 'innodb' and 'semisync' if possible.
# As we need to have there variables loaded if the components exist but do 
# not want the test skiped if they are not, we cannot use the 'have_xxx' mecanizm.
# Added an 'all_vars-master.opt' file that includes
# "$SEMISYNC_PLUGIN_OPT --loose-innodb" (see $SEMISYNC_PLUGIN_OPT setting in mysql-test-run.pl)
# and logic similar to 'include/have_semisync_plugin.inc' that will load semisync plugin
if (`SELECT @@have_dynamic_loading = 'YES' AND LENGTH('$SEMISYNC_SOURCE_PLUGIN') > 0`)
{
  --disable_query_log
  # The following is to prevent a mis-match on windows that has the name of of the lib ending with 'dll' 
  --replace_regex /\.dll/.so/
  eval INSTALL PLUGIN rpl_semi_sync_source SONAME '$SEMISYNC_SOURCE_PLUGIN';
  --replace_regex /\.dll/.so/
  eval INSTALL PLUGIN rpl_semi_sync_replica SONAME '$SEMISYNC_REPLICA_PLUGIN';
  --enable_query_log
}



#
# This test verifies that *all* system variables are tested
# by the sys_vars suite. For every system variable
# there must be a <variable_name>_basic.test file.
#

#
# we can diff in perl or in sql, as it's my_SQL_test suite, do it in sql
#

perl;
  use File::Basename;
  my $dirname=dirname($ENV{MYSQLTEST_FILE});
  my @all_tests=<$dirname/*_basic{,_32,_64}.test>;
  open(F, '>', "$ENV{MYSQLTEST_VARDIR}/tmp/sys_vars.all_vars.txt") or die;
  binmode F;
  print F join "\n", sort map { s/_basic(_32|_64)?\.test$//; basename $_ } @all_tests;
EOF

#
# todo: fix Bug #55080 mysql-next-mr requires a specic to new added global variables test file
# to get rid of unxpected and probited following SELECT results
#

create table t1 (test_name text);
create table t2 (variable_name text);
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
eval load data infile "$MYSQLTEST_VARDIR/tmp/sys_vars.all_vars.txt" into table t1;

--disable_warnings
insert into t2 select variable_name from performance_schema.global_variables;
insert into t2 select variable_name from performance_schema.session_variables;
--enable_warnings

# Performance schema variables are too long for files named
# 'mysql-test/suite/sys_vars/t/' ...
# ... 'performance_schema_events_waits_history_long_size_basic-master.opt'
# to fit in the tar source distribution (limit in old tar)
# Renaming the tests to aliases below.

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");
update t2 set variable_name= replace(variable_name, "lock_order_", "lo_");

--sorted_result
select variable_name as `There should be *no* long test name listed below:` from t2
  where length(variable_name) > 50;

--sorted_result
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;

drop table t1;
drop table t2;

# Unloading the semisync plugins in case they were loaded
if (`SELECT @@have_dynamic_loading = 'YES' AND LENGTH('$SEMISYNC_SOURCE_PLUGIN') > 0`)
{
  --disable_query_log
  UNINSTALL PLUGIN rpl_semi_sync_source;
  UNINSTALL PLUGIN rpl_semi_sync_replica;
  --enable_query_log
}

# Cleanup
--remove_file $MYSQLTEST_VARDIR/tmp/sys_vars.all_vars.txt