summaryrefslogtreecommitdiff
path: root/mysql-test/main/mysqltest_tracking_info.result
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2020-07-21 14:56:47 +0200
committerOleksandr Byelkin <sanja@mariadb.com>2020-07-23 09:38:58 +0200
commit0ec641ea1ef1ef23183d8c1b4e6d9e4a9810eba2 (patch)
tree8161df37df719728abd21858c3dc3c1cbece1916 /mysql-test/main/mysqltest_tracking_info.result
parentc86accc7ac9ea503dc7988e7921e58a9bf7b2f80 (diff)
downloadmariadb-git-0ec641ea1ef1ef23183d8c1b4e6d9e4a9810eba2.tar.gz
MDEV-22134: handle_fatal_signal (sig=11) in __strlen_avx2 on START SLAVE | Assertion `global_system_variables.session_track_system_variables' failed in Session_sysvars_tracker::init | *** buffer overflow detected *** (on optimized builds)
Prohibit assigning NULL as for other system variables.
Diffstat (limited to 'mysql-test/main/mysqltest_tracking_info.result')
-rw-r--r--mysql-test/main/mysqltest_tracking_info.result12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/main/mysqltest_tracking_info.result b/mysql-test/main/mysqltest_tracking_info.result
index bbbb2be9e01..7947a86d386 100644
--- a/mysql-test/main/mysqltest_tracking_info.result
+++ b/mysql-test/main/mysqltest_tracking_info.result
@@ -45,3 +45,15 @@ Warning 1681 'engine_condition_pushdown=on' is deprecated and will be removed in
set @@optimizer_switch=@save_optimizer_switch;
SET @@session.session_track_system_variables= @save_session_track_system_variables;
# End of 10.2 tests
+#
+# MDEV-22134 handle_fatal_signal (sig=11) in __strlen_avx2 on START
+# SLAVE | Assertion
+# `global_system_variables.session_track_system_variables' failed in
+# Session_sysvars_tracker::init | *** buffer overflow detected ***
+# (on optimized builds)
+#
+SET @@GLOBAL.session_track_system_variables=NULL;
+ERROR 42000: Variable 'session_track_system_variables' can't be set to the value of 'NULL'
+SET SESSION session_track_system_variables=NULL;
+ERROR 42000: Variable 'session_track_system_variables' can't be set to the value of 'NULL'
+# End of 10.3 tests