summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/sys_vars/t/sysvars_star.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/sys_vars/t/sysvars_star.test')
-rw-r--r--mysql-test/suite/sys_vars/t/sysvars_star.test43
1 files changed, 43 insertions, 0 deletions
diff --git a/mysql-test/suite/sys_vars/t/sysvars_star.test b/mysql-test/suite/sys_vars/t/sysvars_star.test
new file mode 100644
index 00000000..8d0aefdc
--- /dev/null
+++ b/mysql-test/suite/sys_vars/t/sysvars_star.test
@@ -0,0 +1,43 @@
+#
+# MDEV-12684 Show what config file a sysvar got a value from
+#
+
+source include/not_embedded.inc;
+if (!$SQL_ERRLOG_SO) {
+ skip No sql_errlog plugin;
+}
+
+#system_versioning_alter_history
+#binlog_format
+set completion_type=CHAIN;
+set global low_priority_updates=1;
+
+install soname 'sql_errlog';
+
+vertical_results;
+replace_regex /\/.*\//var\//;
+select * from information_schema.system_variables
+ where variable_name in (
+ 'completion_type', #session!=global, origin=compile-time
+ 'low_priority_updates', #global!=default, origin=sql
+ 'column_compression_threshold', #origin=command-line
+ 'plugin_maturity', #origin=config
+ 'sql_error_log_rate', #plugin, origin=command-line
+ 'sql_error_log_rotations' #plugin, origin=config
+ )
+ order by variable_name;
+
+create user foo@localhost;
+
+connect foo,localhost,foo;
+select global_value_path from information_schema.system_variables where variable_name='plugin_maturity';
+connection default;
+replace_regex /\/.*\//var\//;
+select global_value_path from information_schema.system_variables where variable_name='plugin_maturity';
+disconnect foo;
+drop user foo@localhost;
+set global low_priority_updates=default;
+disable_warnings;
+uninstall soname 'sql_errlog';
+let $count_sessions= 1;
+source include/wait_until_count_sessions.inc;